Skip to content

MARCONI(100) Deployment

Pramod Kumbhar edited this page Sep 29, 2020 · 6 revisions

List of latest packages deployed

  • neurodamus-hippocampus/0.4
  • neurodamus-neocortex/0.3
  • neuron/7.8.0c
  • py-neurodamus/1.3.0

Instructions for Using Software Stack

  • Run a simulation
#!/bin/bash
#SBATCH --nodes=1
#SBATCH --ntasks-per-node=36
#SBATCH -A pra18_4575_0
#SBATCH --time=00:30:00
#SBATCH -p m100_usr_prod

module purge
module load profile/advanced
module load gnu/8.4.0 cuda/10.1
module load spectrum_mpi/10.3.1--binary boost/1.72.0--spectrum_mpi--10.3.1--binary

# python 3.7.8
export LD_LIBRARY_PATH=/cineca/prod/opt/compilers/python/3.7.8/none/lib:$LD_LIBRARY_PATH

module use /m100/home/userexternal/jblancoa/hbp-spack-deployments/softwares/27-08-2020/install/modules/tcl/linux-rhel7-power9le
module load neurodamus-neocortex/0.3

# Run the simulation
mpirun special -mpi -NFRAME 1000 $HOC_LIBRARY_PATH/init.hoc

# Run the simulation with neurodamus py instead
module load py-neurodamus
mpirun neurodamus BlueConfig
Clone this wiki locally