forked from Spokhim/MouseBrainModelling
-
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
Showing
2 changed files
with
198 additions
and
5 deletions.
There are no files selected for viewing
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
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 @@ | ||
# This is the job scripts file to run jobs on the super cluster. For Array job on Yossarian. | ||
|
||
#!/bin/csh | ||
#PBS -N loop-yoss | ||
#PBS -q yossarian | ||
#PBS -l select=1:ncpus=1:mem=4GB | ||
# Minimum acceptable walltime: day-hours:mins:secs | ||
#PBS -l walltime=48:00:00 | ||
# Send e-mail if job ends or aborts | ||
#PBS -m bea | ||
#PBS -M psiu5120@uni.sydney.edu.au | ||
#PBS -V | ||
|
||
# -J Specifies Job Array with Indices | ||
#PBS -J 0-10 | ||
|
||
# Show the host on which the job ran | ||
hostname | ||
module load Anaconda3-5.1.0 | ||
|
||
# Load TVB virtual env. | ||
source ~/TVB/bin/activate.csh | ||
|
||
# Working directory is where I ran qsub | ||
cd "$PBS_O_WORKDIR" | ||
python Loop_sim.py $PBS_ARRAY_INDEX | ||
exit |