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
As these mod files are compiled for GPU, nrnran123_setseq get replaced with cu_nrnran123_setseq (because of macro in nrnran123.h).
nrnran123_setseq in INITIAL block is called on GPU so its ok to call cu_nrnran123_setseq. But bbcore_read is called in CPU context and calling CUDA kernel cu_nrnran123_setseq result in abort.
The text was updated successfully, but these errors were encountered:
Consider following example in Ampa and Gaba synapses of BBP model :
As these mod files are compiled for GPU,
nrnran123_setseq
get replaced withcu_nrnran123_setseq
(because of macro in nrnran123.h).nrnran123_setseq
in INITIAL block is called on GPU so its ok to callcu_nrnran123_setseq
. Butbbcore_read
is called in CPU context and calling CUDA kernelcu_nrnran123_setseq
result in abort.The text was updated successfully, but these errors were encountered: