25 lines
846 B
Plaintext
25 lines
846 B
Plaintext
|
|
#!/bin/ksh
|
||
|
|
#BHEADER***********************************************************************
|
||
|
|
# (c) 1998 The Regents of the University of California
|
||
|
|
#
|
||
|
|
# See the file COPYRIGHT_and_DISCLAIMER for a complete copyright
|
||
|
|
# notice, contact person, and disclaimer.
|
||
|
|
#
|
||
|
|
# $Revision$
|
||
|
|
#EHEADER***********************************************************************
|
||
|
|
|
||
|
|
#=============================================================================
|
||
|
|
# Run each example
|
||
|
|
#=============================================================================
|
||
|
|
|
||
|
|
|
||
|
|
mpirun -np 2 ./ex1_for > fortran_examples.out.1
|
||
|
|
|
||
|
|
mpirun -np 16 ./ex3_for -n 33 -solver 0 -v 1 1 > fortran_examples.out.3
|
||
|
|
|
||
|
|
mpirun -np 4 ./ex5_for > fortran_examples.out.5
|
||
|
|
|
||
|
|
mpirun -np 2 ./ex6_for > fortran_examples.out.6
|
||
|
|
|
||
|
|
mpirun -np 16 ./ex7_for -n 33 -solver 10 -K 3 -B 0 -C 1 -UO 2 -F 4 > fortran_examples.out.7
|