head	1.1;
access;
symbols
	charm6_1:1.1
	charm_6_0_1:1.1
	charm6_0_1:1.1
	charm6_0:1.1
	ChaNGa_1-0:1.1
	charm5_9:1.1;
locks; strict;
comment	@# @;


1.1
date	2004.09.15.19.43.04;	author bohm;	state Exp;
branches;
next	;


desc
@@


1.1
log
@Initial checkin of move from pgms
@
text
@#!/bin/sh
# A shell script to compare the various load-balancing
# strategies.

stratList="greedy metis random none"

mkdir out
processors=8
lb_arg="1200 32 1 5"

for strategy in `echo $stratList`
do
	echo "---- $strategy:---"
	file1="out/run.$strategy"
	file2="out/time.$strategy"
	mpirun -np $processors lb_test $strategy $lb_arg | tee $file1
	head $file1 > $file2
	grep GREP00 $file1 >> $file2
done

echo "Timings in out/"
@
