14 lines
232 B
Plaintext
14 lines
232 B
Plaintext
|
#!/bin/bash
|
||
|
#SBATCH --time=12:00:00
|
||
|
#SBATCH -p maint-batch
|
||
|
##SBATCH --qos=avandewa-condo
|
||
|
#SBATCH --nodes=1
|
||
|
#SBATCH --tasks-per-node=8
|
||
|
#SBATCH -J mcsqs_lev_1_diamond
|
||
|
|
||
|
for (( id=0 ; id<8 ; id++ ))
|
||
|
do
|
||
|
mcsqs -n=32 -ip=$id &
|
||
|
done
|
||
|
wait
|