Skip to content

Commit

Permalink
fixed bugs with templates
Browse files Browse the repository at this point in the history
  • Loading branch information
Ben Latimer committed Sep 18, 2020
1 parent dcbee03 commit be7e69f
Show file tree
Hide file tree
Showing 607 changed files with 2,017 additions and 284,839 deletions.
Binary file modified __pycache__/synapses.cpython-36.pyc
Binary file not shown.
27 changes: 27 additions & 0 deletions batch_comet_build.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
#!/bin/bash
#SBATCH --partition compute
#SBATCH --nodes=1
#SBATCH --ntasks-per-node=1
#SBATCH -A TG-DBS180005
#SBATCH --job-name=full_build
#SBATCH --output=full_build.out
#SBATCH --time 0-00:30


module purge
#module load python
module load intel
module load openmpi_ib
export PYTHONPATH=$HOME/nrn/lib/python:$PYTHONPATH
export LD_LIBRARY_PATH=$HOME/nrn/x86_64/lib:$LD_LIBRARY_PATH
export PATH=$HOME/nrn/x86_64/bin:$PATH

rm -rf network/*

echo "Building model at $(date)"

python build_network.py

echo "Done building model at $(date)"


28 changes: 28 additions & 0 deletions batch_comet_run.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
#!/bin/bash

#SBATCH --partition compute
#SBATCH --nodes=1
#SBATCH --ntasks-per-node=1
#SBATCH -A TG-DBS180005
#SBATCH --job-name=full_run
#SBATCH --output=full_run.out
#SBATCH --time 0-00:30

module purge
#module load python
module load intel
module load openmpi_ib
export LD_LIBRARY_PATH=$HOME/nrn/x86_64/lib:$LD_LIBRARY_PATH
export PYTHONPATH=$HOME/nrn/lib/python:$PYTHONPATH
export PATH=$HOME/nrn/x86_64/bin:$PATH

rm -rf output


echo "Running model at $(date)"

#mpirun nrniv -mpi -quiet -python3 run_network.py simulation_config.json
ibrun nrniv -mpi -python run_save_network.py
#python run_network.py simulation_configECP.json

echo "Done running model at $(date)"
Loading

0 comments on commit be7e69f

Please sign in to comment.