mirror of
https://github.com/OPM/opm-simulators.git
synced 2025-01-05 22:13:00 -06:00
7 lines
107 B
Bash
7 lines
107 B
Bash
|
#!/bin/bash
|
||
|
# This executes a unit test in parallel.
|
||
|
NP=$1
|
||
|
BDIR=$2
|
||
|
shift 2
|
||
|
mpirun -np $NP $BDIR/bin/$@
|