|
|
@ -1,4 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
module psbn_d_base_mat_mod
|
|
|
|
module psbn_d_base_mat_mod
|
|
|
|
|
|
|
|
|
|
|
|
use psbn_base_mat_mod
|
|
|
|
use psbn_base_mat_mod
|
|
|
@ -14,10 +13,11 @@ module psbn_d_base_mat_mod
|
|
|
|
procedure, pass(a) :: csins
|
|
|
|
procedure, pass(a) :: csins
|
|
|
|
procedure, pass(a) :: to_coo
|
|
|
|
procedure, pass(a) :: to_coo
|
|
|
|
procedure, pass(a) :: from_coo
|
|
|
|
procedure, pass(a) :: from_coo
|
|
|
|
|
|
|
|
procedure, pass(a) :: to_fmt
|
|
|
|
|
|
|
|
procedure, pass(a) :: from_fmt
|
|
|
|
end type psbn_d_base_sparse_mat
|
|
|
|
end type psbn_d_base_sparse_mat
|
|
|
|
private :: d_base_csmv, d_base_csmm, d_base_cssv, d_base_cssm,&
|
|
|
|
private :: d_base_csmv, d_base_csmm, d_base_cssv, d_base_cssm,&
|
|
|
|
& csins, to_coo, from_coo
|
|
|
|
& csins, to_coo, from_coo, to_fmt, from_fmt
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
type, extends(psbn_d_base_sparse_mat) :: psbn_d_coo_sparse_mat
|
|
|
|
type, extends(psbn_d_base_sparse_mat) :: psbn_d_coo_sparse_mat
|
|
|
@ -40,6 +40,8 @@ module psbn_d_base_mat_mod
|
|
|
|
procedure, pass(a) :: allocate_mn => d_coo_allocate_mn
|
|
|
|
procedure, pass(a) :: allocate_mn => d_coo_allocate_mn
|
|
|
|
procedure, pass(a) :: to_coo => d_coo_to_coo
|
|
|
|
procedure, pass(a) :: to_coo => d_coo_to_coo
|
|
|
|
procedure, pass(a) :: from_coo => d_coo_from_coo
|
|
|
|
procedure, pass(a) :: from_coo => d_coo_from_coo
|
|
|
|
|
|
|
|
procedure, pass(a) :: to_fmt => d_coo_to_fmt
|
|
|
|
|
|
|
|
procedure, pass(a) :: from_fmt => d_coo_from_fmt
|
|
|
|
procedure, pass(a) :: fix => d_fix_coo
|
|
|
|
procedure, pass(a) :: fix => d_fix_coo
|
|
|
|
procedure, pass(a) :: free => d_coo_free
|
|
|
|
procedure, pass(a) :: free => d_coo_free
|
|
|
|
|
|
|
|
|
|
|
@ -81,6 +83,26 @@ module psbn_d_base_mat_mod
|
|
|
|
end subroutine d_coo_from_coo_impl
|
|
|
|
end subroutine d_coo_from_coo_impl
|
|
|
|
end interface
|
|
|
|
end interface
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
interface
|
|
|
|
|
|
|
|
subroutine d_coo_to_fmt_impl(a,b,info)
|
|
|
|
|
|
|
|
use psb_const_mod
|
|
|
|
|
|
|
|
import psbn_d_coo_sparse_mat, psbn_d_base_sparse_mat
|
|
|
|
|
|
|
|
class(psbn_d_coo_sparse_mat), intent(in) :: a
|
|
|
|
|
|
|
|
class(psbn_d_base_sparse_mat), intent(out) :: b
|
|
|
|
|
|
|
|
integer, intent(out) :: info
|
|
|
|
|
|
|
|
end subroutine d_coo_to_fmt_impl
|
|
|
|
|
|
|
|
end interface
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
interface
|
|
|
|
|
|
|
|
subroutine d_coo_from_fmt_impl(a,b,info)
|
|
|
|
|
|
|
|
use psb_const_mod
|
|
|
|
|
|
|
|
import psbn_d_coo_sparse_mat, psbn_d_base_sparse_mat
|
|
|
|
|
|
|
|
class(psbn_d_coo_sparse_mat), intent(inout) :: a
|
|
|
|
|
|
|
|
class(psbn_d_base_sparse_mat), intent(in) :: b
|
|
|
|
|
|
|
|
integer, intent(out) :: info
|
|
|
|
|
|
|
|
end subroutine d_coo_from_fmt_impl
|
|
|
|
|
|
|
|
end interface
|
|
|
|
|
|
|
|
|
|
|
|
interface
|
|
|
|
interface
|
|
|
|
subroutine d_coo_csins_impl(nz,val,ia,ja,a,imin,imax,jmin,jmax,info,gtl)
|
|
|
|
subroutine d_coo_csins_impl(nz,val,ia,ja,a,imin,imax,jmin,jmax,info,gtl)
|
|
|
|
use psb_const_mod
|
|
|
|
use psb_const_mod
|
|
|
@ -164,29 +186,48 @@ contains
|
|
|
|
|
|
|
|
|
|
|
|
end subroutine to_coo
|
|
|
|
end subroutine to_coo
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
subroutine from_coo(a,b,info)
|
|
|
|
subroutine d_fix_coo(a,info,idir)
|
|
|
|
|
|
|
|
use psb_error_mod
|
|
|
|
use psb_error_mod
|
|
|
|
use psb_const_mod
|
|
|
|
use psb_realloc_mod
|
|
|
|
class(psbn_d_coo_sparse_mat), intent(inout) :: a
|
|
|
|
class(psbn_d_base_sparse_mat), intent(inout) :: a
|
|
|
|
|
|
|
|
class(psbn_d_coo_sparse_mat), intent(in) :: b
|
|
|
|
integer, intent(out) :: info
|
|
|
|
integer, intent(out) :: info
|
|
|
|
integer, intent(in), optional :: idir
|
|
|
|
|
|
|
|
Integer :: err_act
|
|
|
|
Integer :: err_act
|
|
|
|
character(len=20) :: name='fix_coo'
|
|
|
|
character(len=20) :: name='from_coo'
|
|
|
|
logical, parameter :: debug=.false.
|
|
|
|
logical, parameter :: debug=.false.
|
|
|
|
|
|
|
|
|
|
|
|
call psb_erractionsave(err_act)
|
|
|
|
call psb_erractionsave(err_act)
|
|
|
|
info = 0
|
|
|
|
! This is the base version. If we get here
|
|
|
|
call d_fix_coo_impl(a,info,idir)
|
|
|
|
! it means the derived class is incomplete,
|
|
|
|
|
|
|
|
! so we throw an error.
|
|
|
|
if (info /= 0) goto 9999
|
|
|
|
info = 700
|
|
|
|
|
|
|
|
call psb_errpush(info,name)
|
|
|
|
|
|
|
|
|
|
|
|
call psb_erractionrestore(err_act)
|
|
|
|
if (err_act /= psb_act_ret_) then
|
|
|
|
|
|
|
|
call psb_error()
|
|
|
|
|
|
|
|
end if
|
|
|
|
return
|
|
|
|
return
|
|
|
|
|
|
|
|
|
|
|
|
9999 continue
|
|
|
|
end subroutine from_coo
|
|
|
|
call psb_erractionrestore(err_act)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
subroutine to_fmt(a,b,info)
|
|
|
|
|
|
|
|
use psb_error_mod
|
|
|
|
|
|
|
|
use psb_realloc_mod
|
|
|
|
|
|
|
|
class(psbn_d_base_sparse_mat), intent(in) :: a
|
|
|
|
|
|
|
|
class(psbn_d_base_sparse_mat), intent(out) :: b
|
|
|
|
|
|
|
|
integer, intent(out) :: info
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Integer :: err_act
|
|
|
|
|
|
|
|
character(len=20) :: name='to_fmt'
|
|
|
|
|
|
|
|
logical, parameter :: debug=.false.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
call psb_erractionsave(err_act)
|
|
|
|
|
|
|
|
! This is the base version. If we get here
|
|
|
|
|
|
|
|
! it means the derived class is incomplete,
|
|
|
|
|
|
|
|
! so we throw an error.
|
|
|
|
|
|
|
|
info = 700
|
|
|
|
call psb_errpush(info,name)
|
|
|
|
call psb_errpush(info,name)
|
|
|
|
|
|
|
|
|
|
|
|
if (err_act /= psb_act_ret_) then
|
|
|
|
if (err_act /= psb_act_ret_) then
|
|
|
@ -194,18 +235,17 @@ contains
|
|
|
|
end if
|
|
|
|
end if
|
|
|
|
return
|
|
|
|
return
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
end subroutine to_fmt
|
|
|
|
|
|
|
|
|
|
|
|
end subroutine d_fix_coo
|
|
|
|
subroutine from_fmt(a,b,info)
|
|
|
|
|
|
|
|
|
|
|
|
subroutine from_coo(a,b,info)
|
|
|
|
|
|
|
|
use psb_error_mod
|
|
|
|
use psb_error_mod
|
|
|
|
use psb_realloc_mod
|
|
|
|
use psb_realloc_mod
|
|
|
|
class(psbn_d_base_sparse_mat), intent(inout) :: a
|
|
|
|
class(psbn_d_base_sparse_mat), intent(inout) :: a
|
|
|
|
class(psbn_d_coo_sparse_mat), intent(in) :: b
|
|
|
|
class(psbn_d_base_sparse_mat), intent(in) :: b
|
|
|
|
integer, intent(out) :: info
|
|
|
|
integer, intent(out) :: info
|
|
|
|
|
|
|
|
|
|
|
|
Integer :: err_act
|
|
|
|
Integer :: err_act
|
|
|
|
character(len=20) :: name='from_coo'
|
|
|
|
character(len=20) :: name='from_fmt'
|
|
|
|
logical, parameter :: debug=.false.
|
|
|
|
logical, parameter :: debug=.false.
|
|
|
|
|
|
|
|
|
|
|
|
call psb_erractionsave(err_act)
|
|
|
|
call psb_erractionsave(err_act)
|
|
|
@ -220,10 +260,43 @@ contains
|
|
|
|
end if
|
|
|
|
end if
|
|
|
|
return
|
|
|
|
return
|
|
|
|
|
|
|
|
|
|
|
|
end subroutine from_coo
|
|
|
|
end subroutine from_fmt
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
subroutine d_fix_coo(a,info,idir)
|
|
|
|
|
|
|
|
use psb_error_mod
|
|
|
|
|
|
|
|
use psb_const_mod
|
|
|
|
|
|
|
|
class(psbn_d_coo_sparse_mat), intent(inout) :: a
|
|
|
|
|
|
|
|
integer, intent(out) :: info
|
|
|
|
|
|
|
|
integer, intent(in), optional :: idir
|
|
|
|
|
|
|
|
Integer :: err_act
|
|
|
|
|
|
|
|
character(len=20) :: name='fix_coo'
|
|
|
|
|
|
|
|
logical, parameter :: debug=.false.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
call psb_erractionsave(err_act)
|
|
|
|
|
|
|
|
info = 0
|
|
|
|
|
|
|
|
call d_fix_coo_impl(a,info,idir)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if (info /= 0) goto 9999
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
call psb_erractionrestore(err_act)
|
|
|
|
|
|
|
|
return
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
9999 continue
|
|
|
|
|
|
|
|
call psb_erractionrestore(err_act)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
call psb_errpush(info,name)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if (err_act /= psb_act_ret_) then
|
|
|
|
|
|
|
|
call psb_error()
|
|
|
|
|
|
|
|
end if
|
|
|
|
|
|
|
|
return
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
end subroutine d_fix_coo
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
subroutine csins(nz,val,ia,ja,a,imin,imax,jmin,jmax,info,gtl)
|
|
|
|
subroutine csins(nz,val,ia,ja,a,imin,imax,jmin,jmax,info,gtl)
|
|
|
|
use psb_error_mod
|
|
|
|
use psb_error_mod
|
|
|
|
use psb_realloc_mod
|
|
|
|
use psb_realloc_mod
|
|
|
@ -420,6 +493,68 @@ contains
|
|
|
|
|
|
|
|
|
|
|
|
end subroutine d_coo_from_coo
|
|
|
|
end subroutine d_coo_from_coo
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
subroutine d_coo_to_fmt(a,b,info)
|
|
|
|
|
|
|
|
use psb_error_mod
|
|
|
|
|
|
|
|
use psb_realloc_mod
|
|
|
|
|
|
|
|
class(psbn_d_coo_sparse_mat), intent(in) :: a
|
|
|
|
|
|
|
|
class(psbn_d_base_sparse_mat), intent(out) :: b
|
|
|
|
|
|
|
|
integer, intent(out) :: info
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Integer :: err_act
|
|
|
|
|
|
|
|
character(len=20) :: name='to_coo'
|
|
|
|
|
|
|
|
logical, parameter :: debug=.false.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
call psb_erractionsave(err_act)
|
|
|
|
|
|
|
|
info = 0
|
|
|
|
|
|
|
|
call d_coo_to_fmt_impl(a,b,info)
|
|
|
|
|
|
|
|
if (info /= 0) goto 9999
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
call psb_erractionrestore(err_act)
|
|
|
|
|
|
|
|
return
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
9999 continue
|
|
|
|
|
|
|
|
call psb_erractionrestore(err_act)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
call psb_errpush(info,name)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if (err_act /= psb_act_ret_) then
|
|
|
|
|
|
|
|
call psb_error()
|
|
|
|
|
|
|
|
end if
|
|
|
|
|
|
|
|
return
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
end subroutine d_coo_to_fmt
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
subroutine d_coo_from_fmt(a,b,info)
|
|
|
|
|
|
|
|
use psb_error_mod
|
|
|
|
|
|
|
|
use psb_realloc_mod
|
|
|
|
|
|
|
|
class(psbn_d_coo_sparse_mat), intent(inout) :: a
|
|
|
|
|
|
|
|
class(psbn_d_base_sparse_mat), intent(in) :: b
|
|
|
|
|
|
|
|
integer, intent(out) :: info
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Integer :: err_act
|
|
|
|
|
|
|
|
character(len=20) :: name='from_coo'
|
|
|
|
|
|
|
|
logical, parameter :: debug=.false.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
call psb_erractionsave(err_act)
|
|
|
|
|
|
|
|
info = 0
|
|
|
|
|
|
|
|
call d_coo_from_fmt_impl(a,b,info)
|
|
|
|
|
|
|
|
if (info /= 0) goto 9999
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
call psb_erractionrestore(err_act)
|
|
|
|
|
|
|
|
return
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
9999 continue
|
|
|
|
|
|
|
|
call psb_erractionrestore(err_act)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
call psb_errpush(info,name)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if (err_act /= psb_act_ret_) then
|
|
|
|
|
|
|
|
call psb_error()
|
|
|
|
|
|
|
|
end if
|
|
|
|
|
|
|
|
return
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
end subroutine d_coo_from_fmt
|
|
|
|
|
|
|
|
|
|
|
|
subroutine d_coo_reallocate_nz(nz,a)
|
|
|
|
subroutine d_coo_reallocate_nz(nz,a)
|
|
|
|
use psb_error_mod
|
|
|
|
use psb_error_mod
|
|
|
|
use psb_realloc_mod
|
|
|
|
use psb_realloc_mod
|
|
|
|