Cell splitting in neural networks extends strong scaling (Hines et al. 2008)

 Download zip file 
Help downloading and running models
Accession:97917
Neuron tree topology equations can be split into two subtrees and solved on different processors with no change in accuracy, stability, or computational effort; communication costs involve only sending and receiving two double precision values by each subtree at each time step. Application of the cell splitting method to two published network models exhibits good runtime scaling on twice as many processors as could be effectively used with whole-cell balancing.
Reference:
1 . Hines ML, Eichner H, Schürmann F (2008) Neuron splitting in compute-bound parallel network simulations enables runtime scaling with twice as many processors. J Comput Neurosci 25:203-10 [PubMed]
Model Information (Click on a link to find other models with that property)
Model Type: Realistic Network;
Brain Region(s)/Organism: Generic;
Cell Type(s):
Channel(s):
Gap Junctions:
Receptor(s):
Gene(s):
Transmitter(s):
Simulation Environment: NEURON;
Model Concept(s): Methods;
Implementer(s): Hines, Michael [Michael.Hines at Yale.edu];
/
splitcell
pardentategyrus
readme.html *
bgka.mod *
CaBK.mod *
ccanl.mod *
Gfluct2.mod *
gskch.mod *
hyperde3.mod *
ichan2.mod *
LcaMig.mod *
nca.mod *
tca.mod *
bg.sh
DG500_M7.hoc *
dgnetactivity.jpg *
dgnettraces.jpg *
init.hoc
initorig.hoc *
modstat *
mosinit_orig.hoc *
out.std
parRI10sp.hoc
RI10sp.hoc
test1.sh *
time *
                            
#!/bin/sh


R=`waitforfree`
allocpart $R

if false ; then

bgnoalloc $R 1 -c "load_balance_phase=1" init.hoc
bgnoalloc $R 1 -c "load_balance_phase=2" init.hoc
bgnoalloc $R 5 ../common/balcomp.hoc

NRNIV=/home/hines/neuron/nrnobj/powerpc64/bin/nrniv sh ../common/metisbal.sh \
	32 64 128 256 512 > metisbal.stdout

fi

if true ; then

for i in 32 64 128 256 ; do
	for phase in 0 3 4 ; do
		rm out$i.dat
		bgnoalloc VN $R $i -c "load_balance_phase=$phase" init.hoc
		sortspike out$i.dat temp
		cmp temp out.std
		mv temp.$i stdout.$i.$phase
	done
done

fi

freepart $R

Loading data, please wait...