1#! /bin/csh -f
2
3set msglvl  = 1
4set msgFile = stdout
5set msgFile = res
6
7
8set type    =   1
9set type    =   2
10
11set nrow    = 100
12set ncol    =  4
13set inc1    =  1
14set inc2    = $nrow
15set inc1    = $ncol
16set inc2    =  1
17set seed    = 10101
18set nproc   = 4
19set root    = 1
20
21#
22#  for solaris with mpich
23#
24set pgFile  = scatterDenseMtx$nproc.pg
25/usr/local/mpi/bin/mpirun -p4pg $pgFile \
26testScatterDenseMtx \
27   $msglvl $msgFile $type $nrow $ncol $inc1 $inc2 $seed $root
28
29#
30#  for sgi
31#
32# mpirun -np $nproc \
33# testScatterDenseMtx \
34#    $msglvl $msgFile $type $nrow $ncol $inc1 $inc2 $seed $root
35
36#
37#  for hp
38#
39# /opt/mpi/bin/mpirun -np $nproc \
40# testScatterDenseMtx \
41#    $msglvl $msgFile $type $nrow $ncol $inc1 $inc2 $seed $root
42
43