#!/bin/sh
if which mpirun >/dev/null; then
    mpirun -np 1 ./field/field_suite
else
    mpiexec -np 1 ./field/field_suite
fi
