#! /bin/csh -f

set msglvl       =      1
set msgFile      = stdout
set nrow         =    100
set ncol         =    100
set inc1         =      1
set inc2         =  $nrow
set nrhs         =     32
set major        =      1
set seed         =      1
set alpha        =    2.3

set n = 300
foreach nrhs  ( 100 )
   echo '   nrhs = ' $nrhs
   foreach nrow  ( 101 )
      echo '     nrow = ' $nrow
      foreach ncol  ( 102 )
         echo '       ncol = ' $ncol
         set inc1 = 1
         set inc2 = $nrow
         echo '       ncol = ' $ncol ' inc1 = ' $inc1 ' inc2 = ' $inc2
         test_mvm $msglvl $msgFile $nrow $ncol $inc1 $inc2 $nrhs \
                  $seed $alpha 
         set inc2 = 1
         set inc1 = $ncol
         echo '       ncol = ' $ncol ' inc1 = ' $inc1 ' inc2 = ' $inc2
         test_mvm $msglvl $msgFile $nrow $ncol $inc1 $inc2 $nrhs \
                  $seed $alpha 
      end
   end
end
