#!/usr/bin/bash

set -e
set -x

### Compile and run a simple MPI application

mpicc -o hello hello.c

mpirun -n 1 ./hello
