|
|
@ -425,11 +425,22 @@ contains
|
|
|
|
end if
|
|
|
|
end if
|
|
|
|
end function amg_c_get_nzeros
|
|
|
|
end function amg_c_get_nzeros
|
|
|
|
|
|
|
|
|
|
|
|
function amg_cprec_sizeof(prec) result(val)
|
|
|
|
function amg_cprec_sizeof(prec, global) result(val)
|
|
|
|
implicit none
|
|
|
|
implicit none
|
|
|
|
class(amg_cprec_type), intent(in) :: prec
|
|
|
|
class(amg_cprec_type), intent(in) :: prec
|
|
|
|
|
|
|
|
logical, intent(in), optional :: global
|
|
|
|
integer(psb_epk_) :: val
|
|
|
|
integer(psb_epk_) :: val
|
|
|
|
integer(psb_ipk_) :: i
|
|
|
|
integer(psb_ipk_) :: i
|
|
|
|
|
|
|
|
type(psb_ctxt_type) :: ctxt
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
logical :: global_
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if (present(global)) then
|
|
|
|
|
|
|
|
global_ = global
|
|
|
|
|
|
|
|
else
|
|
|
|
|
|
|
|
global_ = .false.
|
|
|
|
|
|
|
|
end if
|
|
|
|
|
|
|
|
|
|
|
|
val = 0
|
|
|
|
val = 0
|
|
|
|
val = val + psb_sizeof_ip
|
|
|
|
val = val + psb_sizeof_ip
|
|
|
|
if (allocated(prec%precv)) then
|
|
|
|
if (allocated(prec%precv)) then
|
|
|
@ -437,6 +448,11 @@ contains
|
|
|
|
val = val + prec%precv(i)%sizeof()
|
|
|
|
val = val + prec%precv(i)%sizeof()
|
|
|
|
end do
|
|
|
|
end do
|
|
|
|
end if
|
|
|
|
end if
|
|
|
|
|
|
|
|
if (global_) then
|
|
|
|
|
|
|
|
ctxt = prec%ctxt
|
|
|
|
|
|
|
|
call psb_sum(ctxt,val)
|
|
|
|
|
|
|
|
end if
|
|
|
|
|
|
|
|
|
|
|
|
end function amg_cprec_sizeof
|
|
|
|
end function amg_cprec_sizeof
|
|
|
|
|
|
|
|
|
|
|
|
!
|
|
|
|
!
|
|
|
|