You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In a customized network, I saw that the SNN cannot run when we have more that 256 synapses totally in M groups. BTW, I am using "nocuda" version. I changed the assertion error in my computer to: `++numConnections_ <= MAX_CONN_PER_SNN +1000 ' to fix the error for now and continue running the SNN. Is there any way to change the value of this variable (MAX_CONN_PER_SNN) and also its type? Its type is short-int which is not enough to cover my large networks (syn>32765).
The text was updated successfully, but these errors were encountered:
Just to clarify, an SNN with two groups of N>256 neurons connecting by pre-defined connections is fine. My case happens when we have about 50 groups of neurons (each 1 neuron) connecting to each other based on some specific criteria.
In a customized network, I saw that the SNN cannot run when we have more that 256 synapses totally in M groups. BTW, I am using "nocuda" version. I changed the assertion error in my computer to: `++numConnections_ <= MAX_CONN_PER_SNN +1000 ' to fix the error for now and continue running the SNN. Is there any way to change the value of this variable (MAX_CONN_PER_SNN) and also its type? Its type is short-int which is not enough to cover my large networks (syn>32765).
The text was updated successfully, but these errors were encountered: