#!/bin/bash
mpicc mpi_test_blcr.c 
gcc harness.c -o test -DRANK=10 -std=c99
./test
result=$?
echo $result
rm -f a.out test *.log

exit $?
