You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
87 lines
2.6 KiB
Fortran
87 lines
2.6 KiB
Fortran
submodule (psb_z_oacc_hll_mat_mod) psb_z_oacc_hll_inner_vect_sv_impl
|
|
use psb_base_mod
|
|
contains
|
|
module subroutine psb_z_oacc_hll_inner_vect_sv(alpha, a, x, beta, y, info, trans)
|
|
implicit none
|
|
class(psb_z_oacc_hll_sparse_mat), intent(in) :: a
|
|
complex(psb_dpk_), intent(in) :: alpha, beta
|
|
class(psb_z_base_vect_type), intent(inout) :: x, y
|
|
integer(psb_ipk_), intent(out) :: info
|
|
character, optional, intent(in) :: trans
|
|
|
|
complex(psb_dpk_), allocatable :: rx(:), ry(:)
|
|
logical :: tra
|
|
character :: trans_
|
|
integer(psb_ipk_) :: err_act
|
|
character(len=20) :: name = 'z_oacc_hll_inner_vect_sv'
|
|
logical, parameter :: debug = .false.
|
|
integer(psb_ipk_) :: i, j, nhacks, hksz
|
|
|
|
call psb_get_erraction(err_act)
|
|
info = psb_success_
|
|
|
|
if (present(trans)) then
|
|
trans_ = trans
|
|
else
|
|
trans_ = 'N'
|
|
end if
|
|
|
|
if (.not.a%is_asb()) then
|
|
info = psb_err_invalid_mat_state_
|
|
call psb_errpush(info, name)
|
|
goto 9999
|
|
endif
|
|
|
|
tra = (psb_toupper(trans_) == 'T') .or. (psb_toupper(trans_) == 'C')
|
|
|
|
if (tra .or. (beta /= dzero)) then
|
|
call x%sync()
|
|
call y%sync()
|
|
call a%psb_z_hll_sparse_mat%inner_spsm(alpha, x, beta, y, info, trans)
|
|
call y%set_host()
|
|
else
|
|
select type (xx => x)
|
|
type is (psb_z_vect_oacc)
|
|
select type(yy => y)
|
|
type is (psb_z_vect_oacc)
|
|
if (xx%is_host()) call xx%sync()
|
|
if (beta /= dzero) then
|
|
if (yy%is_host()) call yy%sync()
|
|
end if
|
|
nhacks = size(a%hkoffs) - 1
|
|
hksz = a%hksz
|
|
!$acc parallel loop present(a, xx, yy)
|
|
do i = 1, nhacks
|
|
do j = a%hkoffs(i), a%hkoffs(i+1) - 1
|
|
yy%v(a%irn(j)) = alpha * a%val(j) * xx%v(a%ja(j)) + beta * yy%v(a%irn(j))
|
|
end do
|
|
end do
|
|
call yy%set_dev()
|
|
class default
|
|
rx = xx%get_vect()
|
|
ry = y%get_vect()
|
|
call a%psb_z_hll_sparse_mat%inner_spsm(alpha, rx, beta, ry, info)
|
|
call y%bld(ry)
|
|
end select
|
|
class default
|
|
rx = x%get_vect()
|
|
ry = y%get_vect()
|
|
call a%psb_z_hll_sparse_mat%inner_spsm(alpha, rx, beta, ry, info)
|
|
call y%bld(ry)
|
|
end select
|
|
endif
|
|
|
|
if (info /= psb_success_) then
|
|
info = psb_err_from_subroutine_
|
|
call psb_errpush(info, name, a_err = 'hll_vect_sv')
|
|
goto 9999
|
|
endif
|
|
|
|
call psb_erractionrestore(err_act)
|
|
return
|
|
|
|
9999 call psb_error_handler(err_act)
|
|
return
|
|
end subroutine psb_z_oacc_hll_inner_vect_sv
|
|
end submodule psb_z_oacc_hll_inner_vect_sv_impl
|