|
|
@ -193,6 +193,7 @@ contains
|
|
|
|
use psb_descriptor_type
|
|
|
|
use psb_descriptor_type
|
|
|
|
Use psb_prec_type
|
|
|
|
Use psb_prec_type
|
|
|
|
use psb_string_mod
|
|
|
|
use psb_string_mod
|
|
|
|
|
|
|
|
use psb_penv_mod
|
|
|
|
!!$ parameters
|
|
|
|
!!$ parameters
|
|
|
|
character(len=*) :: method
|
|
|
|
character(len=*) :: method
|
|
|
|
Type(psb_dspmat_type), Intent(in) :: a
|
|
|
|
Type(psb_dspmat_type), Intent(in) :: a
|
|
|
@ -206,6 +207,7 @@ contains
|
|
|
|
Integer, Optional, Intent(out) :: iter
|
|
|
|
Integer, Optional, Intent(out) :: iter
|
|
|
|
Real(Kind(1.d0)), Optional, Intent(out) :: err
|
|
|
|
Real(Kind(1.d0)), Optional, Intent(out) :: err
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
integer :: ictxt, me, np
|
|
|
|
integer :: itmax_, itrace_, irst_, istop_, iter_
|
|
|
|
integer :: itmax_, itrace_, irst_, istop_, iter_
|
|
|
|
real(kind(1.d0)) :: err_
|
|
|
|
real(kind(1.d0)) :: err_
|
|
|
|
|
|
|
|
|
|
|
@ -233,6 +235,8 @@ contains
|
|
|
|
istop_ = 1
|
|
|
|
istop_ = 1
|
|
|
|
end if
|
|
|
|
end if
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ictxt = psb_cd_get_context(desc_a)
|
|
|
|
|
|
|
|
call psb_info(ictxt,me,np)
|
|
|
|
|
|
|
|
|
|
|
|
select case(toupper(method))
|
|
|
|
select case(toupper(method))
|
|
|
|
case('CG')
|
|
|
|
case('CG')
|
|
|
@ -254,6 +258,8 @@ contains
|
|
|
|
call psb_bicgstabl(a,prec,b,x,eps,desc_a,info,&
|
|
|
|
call psb_bicgstabl(a,prec,b,x,eps,desc_a,info,&
|
|
|
|
&itmax_,iter_,err_,itrace_,irst_,istop_)
|
|
|
|
&itmax_,iter_,err_,itrace_,irst_,istop_)
|
|
|
|
case default
|
|
|
|
case default
|
|
|
|
|
|
|
|
if (me==0) write(0,*) &
|
|
|
|
|
|
|
|
& 'psb_krylov: unknown method, defaulting to BiCGSTAB'
|
|
|
|
call psb_bicgstab(a,prec,b,x,eps,desc_a,info,&
|
|
|
|
call psb_bicgstab(a,prec,b,x,eps,desc_a,info,&
|
|
|
|
&itmax_,iter_,err_,itrace_,istop_)
|
|
|
|
&itmax_,iter_,err_,itrace_,istop_)
|
|
|
|
end select
|
|
|
|
end select
|
|
|
@ -275,6 +281,7 @@ contains
|
|
|
|
use psb_descriptor_type
|
|
|
|
use psb_descriptor_type
|
|
|
|
Use psb_prec_type
|
|
|
|
Use psb_prec_type
|
|
|
|
use psb_string_mod
|
|
|
|
use psb_string_mod
|
|
|
|
|
|
|
|
use psb_penv_mod
|
|
|
|
!!$ parameters
|
|
|
|
!!$ parameters
|
|
|
|
character(len=*) :: method
|
|
|
|
character(len=*) :: method
|
|
|
|
Type(psb_zspmat_type), Intent(in) :: a
|
|
|
|
Type(psb_zspmat_type), Intent(in) :: a
|
|
|
@ -288,6 +295,8 @@ contains
|
|
|
|
Integer, Optional, Intent(out) :: iter
|
|
|
|
Integer, Optional, Intent(out) :: iter
|
|
|
|
Real(Kind(1.d0)), Optional, Intent(out) :: err
|
|
|
|
Real(Kind(1.d0)), Optional, Intent(out) :: err
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
integer :: ictxt, me, np
|
|
|
|
integer :: itmax_, itrace_, irst_, istop_, iter_
|
|
|
|
integer :: itmax_, itrace_, irst_, istop_, iter_
|
|
|
|
real(kind(1.d0)) :: err_
|
|
|
|
real(kind(1.d0)) :: err_
|
|
|
|
|
|
|
|
|
|
|
@ -316,6 +325,9 @@ contains
|
|
|
|
end if
|
|
|
|
end if
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ictxt = psb_cd_get_context(desc_a)
|
|
|
|
|
|
|
|
call psb_info(ictxt,me,np)
|
|
|
|
|
|
|
|
|
|
|
|
select case(toupper(method))
|
|
|
|
select case(toupper(method))
|
|
|
|
!!$ case('CG')
|
|
|
|
!!$ case('CG')
|
|
|
|
!!$ call psb_cg(a,prec,b,x,eps,desc_a,info,&
|
|
|
|
!!$ call psb_cg(a,prec,b,x,eps,desc_a,info,&
|
|
|
@ -336,6 +348,8 @@ contains
|
|
|
|
!!$ call psb_bicgstabl(a,prec,b,x,eps,desc_a,info,&
|
|
|
|
!!$ call psb_bicgstabl(a,prec,b,x,eps,desc_a,info,&
|
|
|
|
!!$ &itmax_,iter_,err_,itrace_,irst_,istop_)
|
|
|
|
!!$ &itmax_,iter_,err_,itrace_,irst_,istop_)
|
|
|
|
case default
|
|
|
|
case default
|
|
|
|
|
|
|
|
if (me==0) write(0,*) &
|
|
|
|
|
|
|
|
& 'psb_krylov: unknown method, defaulting to BiCGSTAB'
|
|
|
|
call psb_bicgstab(a,prec,b,x,eps,desc_a,info,&
|
|
|
|
call psb_bicgstab(a,prec,b,x,eps,desc_a,info,&
|
|
|
|
&itmax_,iter_,err_,itrace_,istop_)
|
|
|
|
&itmax_,iter_,err_,itrace_,istop_)
|
|
|
|
end select
|
|
|
|
end select
|
|
|
|