fixed some error messages

This commit is contained in:
Ulrike Yang 2016-10-05 11:48:28 -07:00
parent 5d4fc5a708
commit f6580b7bd0
3 changed files with 11 additions and 11 deletions

View File

@ -93,7 +93,7 @@ mpirun -np 2 ./ij -lobpcg -solver 43 -tol 1.e-6 -pcgitr 10 -seed 1 -vrand 5 > s
#systems AMG run ...unknown approach, hybrid approach, nodal approach
mpirun -np 2 ./ij -n 20 20 20 -sysL 2 -nf 2 > solvers.out.sysu
mpirun -np 2 ./ij -n 20 20 20 -sysL 2 -nf 2 -nodal 1 -smtype 6 -smlv 10 -dom 1 -ov 0 > solvers.out.sysh
mpirun -np 2 ./ij -n 20 20 20 -sysL 2 -nf 2 -interptype 10 > solvers.out.sysn
mpirun -np 2 ./ij -n 20 20 20 -sysL 2 -nf 2 -interptype 10 -Pmx 6 > solvers.out.sysn
#LGMRS and FlexGMRES
mpirun -np 2 ./ij -solver 50 -rhsrand > solvers.out.101

View File

@ -162,11 +162,11 @@ Residual 9.97061314149104e-07
cycle = 5.720205
# Output file: solvers.out.sysn
Average Convergence Factor = 0.865777
Average Convergence Factor = 0.232267
Complexity: grid = 1.601875
operator = 2.632892
cycle = 11.264869
Complexity: grid = 1.592000
operator = 2.633619
cycle = 11.267164
# Output file: solvers.out.sysu
Average Convergence Factor = 0.419936

View File

@ -4049,7 +4049,7 @@ main( hypre_int argc,
HYPRE_BoomerAMGSetCRRate(pcg_precond, CR_rate);
HYPRE_BoomerAMGSetCRStrongTh(pcg_precond, CR_strong_th);
HYPRE_BoomerAMGSetCRUseCG(pcg_precond, CR_use_CG);
HYPRE_BoomerAMGSetRelaxType(pcg_precond, relax_type);
if (relax_type > -1) HYPRE_BoomerAMGSetRelaxType(pcg_precond, relax_type);
if (relax_down > -1)
HYPRE_BoomerAMGSetCycleRelaxType(pcg_precond, relax_down, 1);
if (relax_up > -1)
@ -4192,7 +4192,7 @@ main( hypre_int argc,
HYPRE_BoomerAMGSetCRRate(pcg_precond, CR_rate);
HYPRE_BoomerAMGSetCRStrongTh(pcg_precond, CR_strong_th);
HYPRE_BoomerAMGSetCRUseCG(pcg_precond, CR_use_CG);
HYPRE_BoomerAMGSetRelaxType(pcg_precond, relax_type);
if (relax_type > -1) HYPRE_BoomerAMGSetRelaxType(pcg_precond, relax_type);
if (relax_down > -1)
HYPRE_BoomerAMGSetCycleRelaxType(pcg_precond, relax_down, 1);
if (relax_up > -1)
@ -4412,7 +4412,7 @@ main( hypre_int argc,
HYPRE_BoomerAMGSetCRRate(pcg_precond, CR_rate);
HYPRE_BoomerAMGSetCRStrongTh(pcg_precond, CR_strong_th);
HYPRE_BoomerAMGSetCRUseCG(pcg_precond, CR_use_CG);
HYPRE_BoomerAMGSetRelaxType(pcg_precond, relax_type);
if (relax_type > -1) HYPRE_BoomerAMGSetRelaxType(pcg_precond, relax_type);
if (relax_down > -1)
HYPRE_BoomerAMGSetCycleRelaxType(pcg_precond, relax_down, 1);
if (relax_up > -1)
@ -4585,7 +4585,7 @@ main( hypre_int argc,
HYPRE_BoomerAMGSetCRRate(pcg_precond, CR_rate);
HYPRE_BoomerAMGSetCRStrongTh(pcg_precond, CR_strong_th);
HYPRE_BoomerAMGSetCRUseCG(pcg_precond, CR_use_CG);
HYPRE_BoomerAMGSetRelaxType(pcg_precond, relax_type);
if (relax_type > -1) HYPRE_BoomerAMGSetRelaxType(pcg_precond, relax_type);
if (relax_down > -1)
HYPRE_BoomerAMGSetCycleRelaxType(pcg_precond, relax_down, 1);
if (relax_up > -1)
@ -4763,7 +4763,7 @@ main( hypre_int argc,
HYPRE_BoomerAMGSetCRRate(pcg_precond, CR_rate);
HYPRE_BoomerAMGSetCRStrongTh(pcg_precond, CR_strong_th);
HYPRE_BoomerAMGSetCRUseCG(pcg_precond, CR_use_CG);
HYPRE_BoomerAMGSetRelaxType(pcg_precond, relax_type);
if (relax_type > -1) HYPRE_BoomerAMGSetRelaxType(pcg_precond, relax_type);
if (relax_down > -1)
HYPRE_BoomerAMGSetCycleRelaxType(pcg_precond, relax_down, 1);
if (relax_up > -1)
@ -4985,7 +4985,7 @@ main( hypre_int argc,
HYPRE_BoomerAMGSetMaxIter(pcg_precond, 1);
HYPRE_BoomerAMGSetCycleType(pcg_precond, cycle_type);
HYPRE_BoomerAMGSetNumSweeps(pcg_precond, num_sweeps);
HYPRE_BoomerAMGSetRelaxType(pcg_precond, relax_type);
if (relax_type > -1) HYPRE_BoomerAMGSetRelaxType(pcg_precond, relax_type);
if (relax_down > -1)
HYPRE_BoomerAMGSetCycleRelaxType(pcg_precond, relax_down, 1);
if (relax_up > -1)