Skip to content

Commit

Permalink
Kill all traces to limit log size.
Browse files Browse the repository at this point in the history
  • Loading branch information
fghoussen committed Sep 14, 2024
1 parent 4a5f633 commit 0700931
Showing 1 changed file with 0 additions and 13 deletions.
13 changes: 0 additions & 13 deletions EXAMPLES/MATRIX_MARKET/arpackmm.sh
Original file line number Diff line number Diff line change
@@ -1,11 +1,7 @@
#!/bin/bash -eu

export CMD="./arpackmm --help" # For coverage
echo "$CMD"
eval "$CMD &> arpackmm.run.log"
echo ""
echo "========================================================================================"
echo ""

for eigPb in "--A As.mtx" "--nonSymPb --A An.mtx" "--nonSymPb --cpxPb --A Az.mtx"
do
Expand Down Expand Up @@ -73,35 +69,26 @@ do

# Remove restart files.
export CMDOUT="rm -f arpackSolver.resid.out arpackSolver.v.out"
echo "$CMDOUT"
eval "$CMDOUT"

# Remove previous log.
export CMDLOG="rm -f arpackmm.run.log"
echo "$CMDLOG"
eval "$CMDLOG"

# Run arpackmm: use --nbCV 6 and --maxIt 200 to ease convergence.
export CMD="./arpackmm $eigPb $genPb $magOpt $shiftRI $invert $tol $slv $rs $dsPrec $dsMat $extraGenPb --nbCV 6 --maxIt 200"
echo "$CMD"
eval "$CMD &> arpackmm.run.log"
#export CMDDBG="tail arpackmm.run.log"
#eval "$CMDDBG"
echo "========================================================================================"
echo ""

# Remove previous log.
export CMDLOG="rm -f arpackmm.run.log"
echo "$CMDLOG"
eval "$CMDLOG"

# Run arpackmm: re-run with restart.
export CMD="$CMD --restart"
echo "$CMD"
eval "$CMD &> arpackmm.run.log"
#eval "$CMDDBG"
echo "========================================================================================"
echo ""
done
done
done
Expand Down

0 comments on commit 0700931

Please sign in to comment.