File: batch_script_mpi_runit7.sh

package info (click to toggle)
superlu-dist 8.2.1%2Bdfsg1-5.1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 9,576 kB
  • sloc: ansic: 132,713; sh: 3,073; f90: 827; cpp: 505; makefile: 431; fortran: 51; csh: 9
file content (16 lines) | stat: -rw-r--r-- 238 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#!/bin/bash
# Bash script to submit many files to Cori/Edison/Queue

EXIT_SUCCESS=0
EXIT_HOST=1
EXIT_PARAM=2


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


exit $EXIT_SUCCESS