File: batch_script_mpi_runit8.sh

package info (click to toggle)
superlu-dist 9.2.1%2Bdfsg1-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 16,292 kB
  • sloc: ansic: 172,999; cpp: 7,262; sh: 5,677; f90: 854; python: 563; makefile: 458; fortran: 51; csh: 9
file content (18 lines) | stat: -rw-r--r-- 277 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#!/bin/bash
# Bash script to submit many files to Cori/Edison/Queue


EXIT_SUCCESS=0
EXIT_HOST=1
EXIT_PARAM=2

export MPICH_MAX_THREAD_SAFETY=multiple

for i in `seq 1 200`;
do
	srun -n 2 ./EXAMPLE/pddrive -r 2 -c 1 ../EXAMPLE/big.rua | tee -a a.out
done


exit $EXIT_SUCCESS