#!/bin/csh -f
# proc_grid: organize processors as $1 by $2 grid

if ( $#argv < 2 ) goto syntax
echo Define processor grid of size $1 by $2
cat >! con.dat <<EOF
2
$1 $2
EOF
goto end
syntax:
echo Usage: proc_grid nn mm
end:
