#!/bin/bash

USAGE="usage: $0 WORKERS [OPTIONS]"

if [ "$#" -lt 1 ]; then
	echo ${USAGE}
	exit 1
fi

WORKERS=$1; shift
PROG=treecode

export LD_LIBRARY_PATH=../../.libs
export MYTH_WORKER_NUM=${WORKERS}
export MALLOC_TRACE=${PROG}.log
export PATH=./:${PATH}

if [ ! -f ${PROG} ]; then
	echo "Executable does not exist, building..."
	make -f Makefile
	if [ "$?" -eq 0 ]; then
		echo "Done."
	else
		echo "Build failed"
		exit 1
	fi
	echo ""
fi

echo "Executing '${PROG} $@' with ${WORKERS} workers..."
${PROG} $@
