krylov/psb_cfcg.F90
 krylov/psb_dfcg.F90
 krylov/psb_sfcg.F90
 krylov/psb_zfcg.F90

Fixed convergence check logging.
psblas3-pattern
Salvatore Filippone 9 years ago
parent 9b485ebdc1
commit 3dbd945ce3

@ -250,9 +250,9 @@ subroutine psb_cfcg_vect(a,prec,b,x,eps,desc_a,info,&
!Loop !Loop
itx = 0
call psb_init_conv(methdname,istop_,itrace_,itmax_,a,b,eps,desc_a,stopdat,info) if (psb_check_conv(methdname,itx ,x,w,desc_a,stopdat,info)) exit restart
if (info /= psb_success_) Then if (info /= psb_success_) Then
call psb_errpush(psb_err_from_subroutine_non_,name) call psb_errpush(psb_err_from_subroutine_non_,name)
goto 9999 goto 9999

@ -250,9 +250,9 @@ subroutine psb_dfcg_vect(a,prec,b,x,eps,desc_a,info,&
!Loop !Loop
itx = 0
call psb_init_conv(methdname,istop_,itrace_,itmax_,a,b,eps,desc_a,stopdat,info) if (psb_check_conv(methdname,itx ,x,w,desc_a,stopdat,info)) exit restart
if (info /= psb_success_) Then if (info /= psb_success_) Then
call psb_errpush(psb_err_from_subroutine_non_,name) call psb_errpush(psb_err_from_subroutine_non_,name)
goto 9999 goto 9999

@ -250,9 +250,9 @@ subroutine psb_sfcg_vect(a,prec,b,x,eps,desc_a,info,&
!Loop !Loop
itx = 0
call psb_init_conv(methdname,istop_,itrace_,itmax_,a,b,eps,desc_a,stopdat,info) if (psb_check_conv(methdname,itx ,x,w,desc_a,stopdat,info)) exit restart
if (info /= psb_success_) Then if (info /= psb_success_) Then
call psb_errpush(psb_err_from_subroutine_non_,name) call psb_errpush(psb_err_from_subroutine_non_,name)
goto 9999 goto 9999

@ -250,9 +250,9 @@ subroutine psb_zfcg_vect(a,prec,b,x,eps,desc_a,info,&
!Loop !Loop
itx = 0
call psb_init_conv(methdname,istop_,itrace_,itmax_,a,b,eps,desc_a,stopdat,info) if (psb_check_conv(methdname,itx ,x,w,desc_a,stopdat,info)) exit restart
if (info /= psb_success_) Then if (info /= psb_success_) Then
call psb_errpush(psb_err_from_subroutine_non_,name) call psb_errpush(psb_err_from_subroutine_non_,name)
goto 9999 goto 9999

Loading…
Cancel
Save