forked from nopsal/PlasticityToy
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Ben Latimer
committed
Sep 18, 2020
1 parent
dcbee03
commit be7e69f
Showing
607 changed files
with
2,017 additions
and
284,839 deletions.
There are no files selected for viewing
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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)" | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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)" |
Oops, something went wrong.