head	1.3;
access;
symbols
	charm5_9:1.2
	charm_5-4-2:1.2
	charm_5-4-1:1.1;
locks; strict;
comment	@# @;


1.3
date	2006.03.31.22.23.59;	author gzheng;	state dead;
branches;
next	1.2;

1.2
date	2001.03.14.17.54.28;	author olawlor;	state Exp;
branches;
next	1.1;

1.1
date	2000.12.02.05.36.19;	author olawlor;	state Exp;
branches;
next	;


desc
@@


1.3
log
@removed, not supported anymore
@
text
@#!/bin/sh
#
# Conv-host for ASCI Red:
#  Translates +pN-style conv-host options into 
# yod options.

args=""
pes=1

while [ $# -gt 0 ]
do
	case $1 in
	+p)
		pes=$2
		shift
		;;
	+p*)
		pes=`echo $1 | awk '{print substr($1,3)}'`
		;;
	*) 
		args="$args $1"
		;;
	esac
	shift
done

echo "Running on $pes processors: $args"

yod -sz $pes $args
@


1.2
log
@Removed excessive quoting, which was confusing Asci Red.
It was trying to execute '"hello"', instead of 'hello'.
@
text
@@


1.1
log
@These scripts translate conv-host-style parameters into
the appropriate machine-specific format (yod and mpprun).
This lets people run Charm++ programs the same way everywhere.
@
text
@d21 1
a21 1
		args=$args" "'"'$1'"'
@

