Changed white space to underscore in path names for some tools.

这个提交包含在:
Craig Warren
2018-01-31 23:03:15 +01:00
父节点 57ea242d30
当前提交 d70b680c81
共有 16 个文件被更改,包括 7 次插入8 次删除

查看文件

@@ -0,0 +1,31 @@
#!/bin/sh
#####################################################################################
### Change to current working directory:
#$ -cwd
### Specify runtime (hh:mm:ss):
#$ -l h_rt=01:00:00
### Parallel environment ($NSLOTS):
#$ -pe sharedmem 16
### Job array and task IDs
#$ -t 1-11
### Job script name:
#$ -N gprmax_omp_jobarray.sh
#####################################################################################
### Initialise environment module
. /etc/profile.d/modules.sh
### Load and activate Anaconda environment for gprMax, i.e. Python 3 and required packages
module load anaconda
source activate gprMax
### Set number of OpenMP threads for each gprMax model
export OMP_NUM_THREADS=16
### Run gprMax with input file
cd $HOME/gprMax
python -m gprMax mymodel.in -n 10 -task $SGE_TASK_ID