|
|
|
@ -48,24 +48,24 @@ subroutine psb_cspspmm(a,b,c,info)
|
|
|
|
integer(psb_ipk_) :: err_act
|
|
|
|
integer(psb_ipk_) :: err_act
|
|
|
|
character(len=*), parameter :: name='psb_spspmm'
|
|
|
|
character(len=*), parameter :: name='psb_spspmm'
|
|
|
|
logical :: done_spmm
|
|
|
|
logical :: done_spmm
|
|
|
|
interface
|
|
|
|
!!$ interface
|
|
|
|
subroutine psb_ccsrspspmm(a,b,c,info)
|
|
|
|
!!$ subroutine psb_ccsrspspmm(a,b,c,info)
|
|
|
|
use psb_c_mat_mod, only : psb_c_csr_sparse_mat
|
|
|
|
!!$ use psb_c_mat_mod, only : psb_c_csr_sparse_mat
|
|
|
|
import :: psb_ipk_
|
|
|
|
!!$ import :: psb_ipk_
|
|
|
|
implicit none
|
|
|
|
!!$ implicit none
|
|
|
|
class(psb_c_csr_sparse_mat), intent(in) :: a,b
|
|
|
|
!!$ class(psb_c_csr_sparse_mat), intent(in) :: a,b
|
|
|
|
type(psb_c_csr_sparse_mat), intent(out) :: c
|
|
|
|
!!$ type(psb_c_csr_sparse_mat), intent(out) :: c
|
|
|
|
integer(psb_ipk_), intent(out) :: info
|
|
|
|
!!$ integer(psb_ipk_), intent(out) :: info
|
|
|
|
end subroutine psb_ccsrspspmm
|
|
|
|
!!$ end subroutine psb_ccsrspspmm
|
|
|
|
subroutine psb_ccscspspmm(a,b,c,info)
|
|
|
|
!!$ subroutine psb_ccscspspmm(a,b,c,info)
|
|
|
|
use psb_c_mat_mod, only : psb_c_csc_sparse_mat
|
|
|
|
!!$ use psb_c_mat_mod, only : psb_c_csc_sparse_mat
|
|
|
|
import :: psb_ipk_
|
|
|
|
!!$ import :: psb_ipk_
|
|
|
|
implicit none
|
|
|
|
!!$ implicit none
|
|
|
|
class(psb_c_csc_sparse_mat), intent(in) :: a,b
|
|
|
|
!!$ class(psb_c_csc_sparse_mat), intent(in) :: a,b
|
|
|
|
type(psb_c_csc_sparse_mat), intent(out) :: c
|
|
|
|
!!$ type(psb_c_csc_sparse_mat), intent(out) :: c
|
|
|
|
integer(psb_ipk_), intent(out) :: info
|
|
|
|
!!$ integer(psb_ipk_), intent(out) :: info
|
|
|
|
end subroutine psb_ccscspspmm
|
|
|
|
!!$ end subroutine psb_ccscspspmm
|
|
|
|
end interface
|
|
|
|
!!$ end interface
|
|
|
|
call psb_erractionsave(err_act)
|
|
|
|
call psb_erractionsave(err_act)
|
|
|
|
info = psb_success_
|
|
|
|
info = psb_success_
|
|
|
|
|
|
|
|
|
|
|
|
@ -147,24 +147,24 @@ subroutine psb_lcspspmm(a,b,c,info)
|
|
|
|
integer(psb_ipk_) :: err_act
|
|
|
|
integer(psb_ipk_) :: err_act
|
|
|
|
character(len=*), parameter :: name='psb_spspmm'
|
|
|
|
character(len=*), parameter :: name='psb_spspmm'
|
|
|
|
logical :: done_spmm
|
|
|
|
logical :: done_spmm
|
|
|
|
interface
|
|
|
|
!!$ interface
|
|
|
|
subroutine psb_lccsrspspmm(a,b,c,info)
|
|
|
|
!!$ subroutine psb_lccsrspspmm(a,b,c,info)
|
|
|
|
use psb_c_mat_mod, only : psb_lc_csr_sparse_mat
|
|
|
|
!!$ use psb_c_mat_mod, only : psb_lc_csr_sparse_mat
|
|
|
|
import :: psb_ipk_
|
|
|
|
!!$ import :: psb_ipk_
|
|
|
|
implicit none
|
|
|
|
!!$ implicit none
|
|
|
|
class(psb_lc_csr_sparse_mat), intent(in) :: a,b
|
|
|
|
!!$ class(psb_lc_csr_sparse_mat), intent(in) :: a,b
|
|
|
|
type(psb_lc_csr_sparse_mat), intent(out) :: c
|
|
|
|
!!$ type(psb_lc_csr_sparse_mat), intent(out) :: c
|
|
|
|
integer(psb_ipk_), intent(out) :: info
|
|
|
|
!!$ integer(psb_ipk_), intent(out) :: info
|
|
|
|
end subroutine psb_lccsrspspmm
|
|
|
|
!!$ end subroutine psb_lccsrspspmm
|
|
|
|
subroutine psb_lccscspspmm(a,b,c,info)
|
|
|
|
!!$ subroutine psb_lccscspspmm(a,b,c,info)
|
|
|
|
use psb_c_mat_mod, only : psb_lc_csc_sparse_mat
|
|
|
|
!!$ use psb_c_mat_mod, only : psb_lc_csc_sparse_mat
|
|
|
|
import :: psb_ipk_
|
|
|
|
!!$ import :: psb_ipk_
|
|
|
|
implicit none
|
|
|
|
!!$ implicit none
|
|
|
|
class(psb_lc_csc_sparse_mat), intent(in) :: a,b
|
|
|
|
!!$ class(psb_lc_csc_sparse_mat), intent(in) :: a,b
|
|
|
|
type(psb_lc_csc_sparse_mat), intent(out) :: c
|
|
|
|
!!$ type(psb_lc_csc_sparse_mat), intent(out) :: c
|
|
|
|
integer(psb_ipk_), intent(out) :: info
|
|
|
|
!!$ integer(psb_ipk_), intent(out) :: info
|
|
|
|
end subroutine psb_lccscspspmm
|
|
|
|
!!$ end subroutine psb_lccscspspmm
|
|
|
|
end interface
|
|
|
|
!!$ end interface
|
|
|
|
call psb_erractionsave(err_act)
|
|
|
|
call psb_erractionsave(err_act)
|
|
|
|
info = psb_success_
|
|
|
|
info = psb_success_
|
|
|
|
|
|
|
|
|
|
|
|
|