最終更新 18 hours ago

yuanpeng's Avatar yuanpeng revised this gist 18 hours ago. Go to revision

1 file changed, 20 insertions

rmcprofile_submit.sh(file created)

@@ -0,0 +1,20 @@
1 + #!/bin/bash
2 + #
3 + #SBATCH --job-name=you_name_it
4 + #SBATCH --output=you_name_it.out
5 + #
6 + #SBATCH --ntasks=1
7 + #SBATCH --cpus-per-task=4
8 + #SBATCH --time=1000000:00
9 + #SBATCH --mem-per-cpu=256
10 +
11 + ulimit -s unlimited
12 + export OMP_TOOL=disabled
13 + export OMP_NUM_THREADS=8
14 +
15 + RMCProfile_PATH=/Applications/RMCProfile_package_V6.7.9_CUDA/
16 + export PGPLOT_DIR=$RMCProfile_PATH/exe/libs
17 + export LD_LIBRARY_PATH=$RMCProfile_PATH/exe/libs
18 + export LIBRARY_PATH=$RMCProfile_PATH/exe/libs
19 + export PATH=$PATH:$RMCProfile_PATH/exe
20 + $RMCProfile_PATH/exe/rmcprofile your_stem_name
Newer Older