Skip to content

Commit

Permalink
[BUG FIX] arpackmm: do NOT double-quote: spaces must NOT be preserved.
Browse files Browse the repository at this point in the history
  • Loading branch information
fghoussen committed Sep 16, 2024
1 parent f773e92 commit 12cac17
Showing 1 changed file with 7 additions and 5 deletions.
12 changes: 7 additions & 5 deletions EXAMPLES/MATRIX_MARKET/arpackmm.sh
Original file line number Diff line number Diff line change
Expand Up @@ -60,16 +60,18 @@ do
fi
fi

# CAUTION: when running arpackmm, do NOT double-quote arguments (= do NOT preserve spaces).

# Run arpackmm: use --nbCV 6 and --maxIt 200 to ease convergence.
./arpackmm "$eigPb $genPb $magOpt $shiftRI $invert $tol $slv $rs $dsPrec $dsMat $extraGenPb" \
--nbCV 6 --maxIt 200 \
./arpackmm $eigPb $genPb $magOpt $shiftRI $invert $tol $slv $rs $dsPrec $dsMat $extraGenPb \
--nbCV 6 --maxIt 200 \
--verbose 3 --debug 3 &> arpackmm.run.log
tail arpackmm.run.log

# Run arpackmm: re-run with restart from slightly different starting point using shift.
./arpackmm "$eigPb $genPb $magOpt $shiftRI $invert $tol $slv $rs $dsPrec $dsMat $extraGenPb" \
--nbCV 6 --maxIt 200 \
--restart "$shiftOpt" \
./arpackmm $eigPb $genPb $magOpt $shiftRI $invert $tol $slv $rs $dsPrec $dsMat $extraGenPb \
--nbCV 6 --maxIt 200 \
--restart $shiftOpt \
--verbose 3 --debug 3 &> arpackmm.run.log
tail arpackmm.run.log
echo "========================================================================================"
Expand Down

0 comments on commit 12cac17

Please sign in to comment.