runBase.sh 183 Bytes
Newer Older
iker_martin's avatar
iker_martin committed
1
2
3
4
5
6
7
8
9
10
11
#!/bin/bash

#SBATCH -p P1
#SBATCH -N 1

## This scripts requires two arguments $1=numSources $2=numSpawn

echo "START RUN"
#mpicc BaseCode.c 
mpirun -np $1 ./a.out $2
echo "END RUN"