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