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