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.
81 lines
2.1 KiB
Fortran
81 lines
2.1 KiB
Fortran
subroutine psb_d_oacc_csr_csmv(alpha, a, x, beta, y, info, trans)
|
|
use psb_base_mod
|
|
use elldev_mod
|
|
use psb_vectordev_mod
|
|
use psb_d_oacc_csr_mat_mod, psb_protect_name => psb_d_oacc_csr_csmv
|
|
implicit none
|
|
class(psb_d_oacc_csr_sparse_mat), intent(in) :: a
|
|
real(psb_dpk_), intent(in) :: alpha, beta
|
|
real(psb_dpk_), intent(in) :: x(:)
|
|
real(psb_dpk_), intent(inout) :: y(:)
|
|
integer(psb_ipk_), intent(out) :: info
|
|
character, optional, intent(in) :: trans
|
|
|
|
character :: trans_
|
|
integer(psb_ipk_) :: i, j, m, n
|
|
logical :: tra
|
|
integer(psb_ipk_) :: err_act
|
|
character(len=20) :: name = 'd_oacc_csmv'
|
|
logical, parameter :: debug = .false.
|
|
|
|
call psb_erractionsave(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) then
|
|
m = a%get_ncols()
|
|
n = a%get_nrows()
|
|
else
|
|
n = a%get_ncols()
|
|
m = a%get_nrows()
|
|
end if
|
|
|
|
if (size(x,1) < n) then
|
|
info = 36
|
|
call psb_errpush(info, name, i_err = (/3 * ione, n, izero, izero, izero/))
|
|
goto 9999
|
|
end if
|
|
|
|
if (size(y,1) < m) then
|
|
info = 36
|
|
call psb_errpush(info, name, i_err = (/5 * ione, m, izero, izero, izero/))
|
|
goto 9999
|
|
end if
|
|
|
|
if (tra) then
|
|
call a%psb_d_csr_sparse_mat%spmm(alpha, x, beta, y, info, trans)
|
|
else
|
|
!$acc parallel loop present(a, x, y)
|
|
do i = 1, m
|
|
y(i) = beta * y(i)
|
|
end do
|
|
|
|
!$acc parallel loop present(a, x, y)
|
|
do i = 1, n
|
|
do j = a%irp(i), a%irp(i+1) - 1
|
|
y(a%ja(j)) = y(a%ja(j)) + alpha * a%val(j) * x(i)
|
|
end do
|
|
end do
|
|
endif
|
|
|
|
call psb_erractionrestore(err_act)
|
|
return
|
|
|
|
9999 call psb_error_handler(err_act)
|
|
return
|
|
|
|
end subroutine psb_d_oacc_csr_csmv
|
|
|