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
I hope this is the right place to report this... sorry if not.
I am using neuron as the backend.
When setting the rate of a SpikeSourcePoisson population the simulation crashes. This seems to be independent of what the initial value of the rate was.
Find a minimum crashing example here:
import pyNN.neuron as sim
pop = sim.Population(size=1, cellclass=sim.SpikeSourcePoisson, cellparams={'rate' :5})
# This line crashes:
pop.set(rate=50)
When executed in a jupyter notebook, the kernel crashes. When executed from bash it throws the following error.
Assertion failed: nt && nt >= nrn_threads && nt < (nrn_threads + nrn_nthread), file D:/a/1/s/src/nrncvode/netcvode.cpp, line 737
I hope this is the right place to report this... sorry if not.
I am using neuron as the backend.
When setting the rate of a SpikeSourcePoisson population the simulation crashes. This seems to be independent of what the initial value of the rate was.
Find a minimum crashing example here:
When executed in a jupyter notebook, the kernel crashes. When executed from bash it throws the following error.
System information:
Error also occurrs when executing the example A demonstration of the use of callbacks to vary the rate of a SpikeSourcePoisson from the docs.
Error seems similar to issue #650 so maybe this is related to the backend.
Or it's just me overlooking something...
The text was updated successfully, but these errors were encountered: