#!/bin/sh
if which mpirun >/dev/null; then
    mpirun -np 2 ./math/math_suite
else
    mpiexec -np 2 ./math/math_suite
fi
