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.
507 lines
13 KiB
Fortran
507 lines
13 KiB
Fortran
! Parallel Sparse BLAS GPU plugin
|
|
! (C) Copyright 2013
|
|
!
|
|
! Salvatore Filippone
|
|
! Alessandro Fanfarillo
|
|
!
|
|
! Redistribution and use in source and binary forms, with or without
|
|
! modification, are permitted provided that the following conditions
|
|
! are met:
|
|
! 1. Redistributions of source code must retain the above copyright
|
|
! notice, this list of conditions and the following disclaimer.
|
|
! 2. Redistributions in binary form must reproduce the above copyright
|
|
! notice, this list of conditions, and the following disclaimer in the
|
|
! documentation and/or other materials provided with the distribution.
|
|
! 3. The name of the PSBLAS group or the names of its contributors may
|
|
! not be used to endorse or promote products derived from this
|
|
! software without specific written permission.
|
|
!
|
|
! THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
|
! ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
|
|
! TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
|
|
! PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE PSBLAS GROUP OR ITS CONTRIBUTORS
|
|
! BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
|
|
! CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
|
|
! SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
|
|
! INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
|
|
! CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
|
|
! ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
|
|
! POSSIBILITY OF SUCH DAMAGE.
|
|
!
|
|
|
|
|
|
subroutine psb_s_hll_cssm(alpha,a,x,beta,y,info,trans)
|
|
|
|
use psb_base_mod
|
|
use psb_s_hll_mat_mod, psb_protect_name => psb_s_hll_cssm
|
|
implicit none
|
|
class(psb_s_hll_sparse_mat), intent(in) :: a
|
|
real(psb_spk_), intent(in) :: alpha, beta, x(:,:)
|
|
real(psb_spk_), intent(inout) :: y(:,:)
|
|
integer(psb_ipk_), intent(out) :: info
|
|
character, optional, intent(in) :: trans
|
|
|
|
character :: trans_
|
|
integer(psb_ipk_) :: i,j,k,m,n, nnz, ir, jc, ldx, ldy, hksz, nxy, mk, mxrwl
|
|
real(psb_spk_), allocatable :: tmp(:,:), acc(:)
|
|
logical :: tra, ctra
|
|
integer(psb_ipk_) :: err_act
|
|
character(len=20) :: name='s_hll_cssm'
|
|
logical, parameter :: debug=.false.
|
|
|
|
info = psb_success_
|
|
call psb_erractionsave(err_act)
|
|
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
|
|
info = psb_err_missing_override_method_
|
|
call psb_errpush(info,name)
|
|
goto 9999
|
|
|
|
if (a%is_dev()) call a%sync()
|
|
tra = (psb_toupper(trans_) == 'T')
|
|
ctra = (psb_toupper(trans_) == 'C')
|
|
m = a%get_nrows()
|
|
hksz = a%get_hksz()
|
|
|
|
if (.not. (a%is_triangle())) then
|
|
info = psb_err_invalid_mat_state_
|
|
call psb_errpush(info,name)
|
|
goto 9999
|
|
end if
|
|
ldx = size(x,1)
|
|
ldy = size(y,1)
|
|
if (ldx<m) then
|
|
info = 36
|
|
call psb_errpush(info,name,i_err=(/3_psb_ipk_,m/))
|
|
goto 9999
|
|
end if
|
|
|
|
if (ldy<m) then
|
|
info = 36
|
|
call psb_errpush(info,name,i_err=(/5_psb_ipk_,m/))
|
|
goto 9999
|
|
end if
|
|
|
|
nxy = min(size(x,2),size(y,2))
|
|
|
|
if (alpha == dzero) then
|
|
if (beta == dzero) then
|
|
do i = 1, m
|
|
y(i,:) = dzero
|
|
enddo
|
|
else
|
|
do i = 1, m
|
|
y(i,:) = beta*y(i,:)
|
|
end do
|
|
endif
|
|
return
|
|
end if
|
|
|
|
allocate(tmp(m,nxy),acc(nxy), stat=info)
|
|
if (info /= psb_success_) then
|
|
info = psb_err_alloc_dealloc_
|
|
call psb_errpush(info,name)
|
|
goto 9999
|
|
endif
|
|
|
|
|
|
|
|
if (beta == szero) then
|
|
|
|
if (.not.(tra.or.ctra)) then
|
|
|
|
if (a%is_lower()) then
|
|
do i=1,m,hksz
|
|
ir = min(hksz,m-i+1)
|
|
j = (i-1)/hksz + 1
|
|
mxrwl = (a%hkoffs(j+1) - a%hkoffs(j))/hksz
|
|
k = a%hkoffs(j) + 1
|
|
call inner_hllsm(tra,ctra,a%is_lower(),a%is_unit(),&
|
|
& i,ir,mxrwl,nxy,a%irn(i),a%idiag(i),&
|
|
& a%ja(k),hksz,a%val(k),hksz,&
|
|
& x,ldx,y,ldy,acc,info)
|
|
if (info /= 0) goto 9999
|
|
end do
|
|
else
|
|
|
|
k = mod(m,hksz)
|
|
if (k==0) k=hksz
|
|
do i=m-k+1,1,-hksz
|
|
ir = min(hksz,m-i+1)
|
|
j = (i-1)/hksz + 1
|
|
mxrwl = (a%hkoffs(j+1) - a%hkoffs(j))/hksz
|
|
k = a%hkoffs(j) + 1
|
|
call inner_hllsm(tra,ctra,a%is_lower(),a%is_unit(),&
|
|
& i,ir,mxrwl,nxy,a%irn(i),a%idiag(i),&
|
|
& a%ja(k),hksz,a%val(k),hksz,&
|
|
& x,ldx,y,ldy,acc,info)
|
|
if (info /= 0) goto 9999
|
|
end do
|
|
end if
|
|
|
|
else if (tra.or.ctra) then
|
|
|
|
do i=1, m
|
|
y(i,:) = x(i,:)
|
|
end do
|
|
|
|
|
|
if (a%is_lower()) then
|
|
|
|
mk = mod(m,hksz)
|
|
if (k==0) k=hksz
|
|
do i=m-mk+1,1,-hksz
|
|
ir = min(hksz,m-i+1)
|
|
j = (i-1)/hksz + 1
|
|
mxrwl = (a%hkoffs(j+1) - a%hkoffs(j))/hksz
|
|
k = a%hkoffs(j) + 1
|
|
call inner_hllsm(tra,ctra,a%is_lower(),a%is_unit(),&
|
|
& i,ir,mxrwl,nxy,a%irn(i),a%idiag(i),&
|
|
& a%ja(k),hksz,a%val(k),hksz,&
|
|
& x,ldx,y,ldy,acc,info)
|
|
if (info /= 0) goto 9999
|
|
end do
|
|
|
|
else
|
|
|
|
do i=1,m,hksz
|
|
ir = min(hksz,m-i+1)
|
|
j = (i-1)/hksz + 1
|
|
mxrwl = (a%hkoffs(j+1) - a%hkoffs(j))/hksz
|
|
k = a%hkoffs(j) + 1
|
|
call inner_hllsm(tra,ctra,a%is_lower(),a%is_unit(),&
|
|
& i,ir,mxrwl,nxy,a%irn(i),a%idiag(i),&
|
|
& a%ja(k),hksz,a%val(k),hksz,&
|
|
& x,ldx,y,ldy,acc,info)
|
|
if (info /= 0) goto 9999
|
|
end do
|
|
|
|
end if
|
|
|
|
end if
|
|
|
|
if (info /= 0) then
|
|
info = psb_err_invalid_mat_state_
|
|
call psb_errpush(info,name)
|
|
goto 9999
|
|
endif
|
|
|
|
if (alpha == sone) then
|
|
! do nothing
|
|
else if (alpha == -sone) then
|
|
do i = 1, m
|
|
y(i,:) = -y(i,:)
|
|
end do
|
|
else
|
|
do i = 1, m
|
|
y(i,:) = alpha*y(i,:)
|
|
end do
|
|
end if
|
|
|
|
else
|
|
|
|
if (.not.(tra.or.ctra)) then
|
|
|
|
if (a%is_lower()) then
|
|
do i=1,m,hksz
|
|
ir = min(hksz,m-i+1)
|
|
j = (i-1)/hksz + 1
|
|
mxrwl = (a%hkoffs(j+1) - a%hkoffs(j))/hksz
|
|
k = a%hkoffs(j) + 1
|
|
call inner_hllsm(tra,ctra,a%is_lower(),a%is_unit(),&
|
|
& i,ir,mxrwl,nxy,a%irn(i),a%idiag(i),&
|
|
& a%ja(k),hksz,a%val(k),hksz,&
|
|
& x,ldx,tmp,m,acc,info)
|
|
if (info /= 0) goto 9999
|
|
end do
|
|
else
|
|
|
|
mk = mod(m,hksz)
|
|
if (k==0) k=hksz
|
|
do i=m-mk+1,1,-hksz
|
|
ir = min(hksz,m-i+1)
|
|
j = (i-1)/hksz + 1
|
|
mxrwl = (a%hkoffs(j+1) - a%hkoffs(j))/hksz
|
|
k = a%hkoffs(j) + 1
|
|
call inner_hllsm(tra,ctra,a%is_lower(),a%is_unit(),&
|
|
& i,ir,mxrwl,nxy,a%irn(i),a%idiag(i),&
|
|
& a%ja(k),hksz,a%val(k),hksz,&
|
|
& x,ldx,tmp,m,acc,info)
|
|
if (info /= 0) goto 9999
|
|
end do
|
|
end if
|
|
|
|
else if (tra.or.ctra) then
|
|
|
|
do i=1, m
|
|
tmp(i,:) = x(i,:)
|
|
end do
|
|
|
|
if (a%is_lower()) then
|
|
|
|
mk = mod(m,hksz)
|
|
if (k==0) k=hksz
|
|
do i=m-mk+1,1,-hksz
|
|
ir = min(hksz,m-i+1)
|
|
j = (i-1)/hksz + 1
|
|
mxrwl = (a%hkoffs(j+1) - a%hkoffs(j))/hksz
|
|
k = a%hkoffs(j) + 1
|
|
call inner_hllsm(tra,ctra,a%is_lower(),a%is_unit(),&
|
|
& i,ir,mxrwl,nxy,a%irn(i),a%idiag(i),&
|
|
& a%ja(k),hksz,a%val(k),hksz,&
|
|
& x,ldx,tmp,m,acc,info)
|
|
if (info /= 0) goto 9999
|
|
end do
|
|
|
|
else
|
|
|
|
do i=1,m,hksz
|
|
ir = min(hksz,m-i+1)
|
|
j = (i-1)/hksz + 1
|
|
mxrwl = (a%hkoffs(j+1) - a%hkoffs(j))/hksz
|
|
k = a%hkoffs(j) + 1
|
|
call inner_hllsm(tra,ctra,a%is_lower(),a%is_unit(),&
|
|
& i,ir,mxrwl,nxy,a%irn(i),a%idiag(i),&
|
|
& a%ja(k),hksz,a%val(k),hksz,&
|
|
& x,ldx,tmp,m,acc,info)
|
|
if (info /= 0) goto 9999
|
|
end do
|
|
|
|
end if
|
|
end if
|
|
|
|
if (info == 0) &
|
|
& call psb_geaxpby(m,nxy,alpha,tmp,beta,y(:,1:nxy),info)
|
|
|
|
if (info /= 0) then
|
|
info = psb_err_invalid_mat_state_
|
|
call psb_errpush(info,name)
|
|
goto 9999
|
|
endif
|
|
|
|
end if
|
|
|
|
call psb_erractionrestore(err_act)
|
|
return
|
|
|
|
9999 call psb_error_handler(err_act)
|
|
return
|
|
|
|
contains
|
|
|
|
subroutine inner_hllsm(tra,ctra,lower,unit,ie,n,nc,nxy,irn,idiag,&
|
|
& ja,ldj,val,ldv,x,ldx,y,ldy,acc,info)
|
|
implicit none
|
|
logical, intent(in) :: tra,ctra,lower,unit
|
|
integer(psb_ipk_), intent(in) :: ie,n,nc,ldj,ldv,ldx,ldy, nxy
|
|
integer(psb_ipk_), intent(in) :: irn(*),idiag(*), ja(ldj,*)
|
|
real(psb_spk_), intent(in) :: val(ldv,*)
|
|
real(psb_spk_), intent(in) :: x(ldx,nxy)
|
|
real(psb_spk_), intent(out) :: y(ldy,nxy)
|
|
integer(psb_ipk_), intent(out) :: info
|
|
|
|
integer(psb_ipk_) :: i,j,k,m, ir, jc
|
|
real(psb_spk_) :: acc(nxy)
|
|
|
|
!
|
|
! The only error condition here is if
|
|
! the matrix is non-unit and some idiag value is illegal.
|
|
!
|
|
info = 0
|
|
if (.not.(tra.or.ctra)) then
|
|
|
|
if (lower) then
|
|
|
|
if (unit) then
|
|
do i=1,n
|
|
acc = szero
|
|
do j=1,irn(i)
|
|
acc = acc + val(i,j)*y(ja(i,j),:)
|
|
end do
|
|
y(ie+i-1,:) = x(ie+i-1,:) - acc
|
|
end do
|
|
else if (.not.unit) then
|
|
do i=1, n
|
|
acc = szero
|
|
do j=1,idiag(i)-1
|
|
acc = acc + val(i,j)*y(ja(i,j),:)
|
|
end do
|
|
if (idiag(i) <= 0) then
|
|
info = -1
|
|
return
|
|
endif
|
|
y(ie+i-1,:) = (x(ie+i-1,:) - acc)/val(i,idiag(i))
|
|
end do
|
|
end if
|
|
|
|
else if (.not.lower) then
|
|
|
|
if (unit) then
|
|
|
|
do i=n, 1, -1
|
|
acc = szero
|
|
do j=1,irn(i)
|
|
acc = acc + val(i,j)*y(ja(i,j),:)
|
|
end do
|
|
y(ie+i-1,:) = x(ie+i-1,:) - acc
|
|
end do
|
|
|
|
else if (.not.unit) then
|
|
|
|
do i=n, 1, -1
|
|
acc = szero
|
|
do j=idiag(i)+1, irn(i)
|
|
acc = acc + val(i,j)*y(ja(i,j),:)
|
|
end do
|
|
if (idiag(i) <= 0) then
|
|
info = -1
|
|
return
|
|
endif
|
|
y(ie+i-1,:) = (x(ie+i-1,:) - acc)/val(i,idiag(i))
|
|
end do
|
|
|
|
end if
|
|
|
|
end if
|
|
|
|
else if (tra) then
|
|
|
|
if (lower) then
|
|
|
|
if (unit) then
|
|
|
|
do i=n, 1, -1
|
|
acc = y(ie+i-1,:)
|
|
|
|
do j=1,irn(i)
|
|
jc = ja(i,j)
|
|
y(jc,:) = y(jc,:) - val(i,j)*acc
|
|
end do
|
|
|
|
end do
|
|
|
|
else if (.not.unit) then
|
|
|
|
do i=n, 1, -1
|
|
if (idiag(i) <= 0) then
|
|
info = -1
|
|
return
|
|
endif
|
|
y(ie+i-1,:) = y(ie+i-1,:)/val(i,idiag(i))
|
|
acc = y(ie+i-1,:)
|
|
do j=1,idiag(i) -1
|
|
jc = ja(i,j)
|
|
y(jc,:) = y(jc,:) - val(i,j)*acc
|
|
end do
|
|
end do
|
|
|
|
end if
|
|
|
|
else if (.not.lower) then
|
|
|
|
if (unit) then
|
|
|
|
do i=1, n
|
|
acc = y(ie+i-1,:)
|
|
do j=1, irn(i)
|
|
jc = ja(i,j)
|
|
y(jc,:) = y(jc,:) - val(i,j)*acc
|
|
end do
|
|
end do
|
|
|
|
else if (.not.unit) then
|
|
|
|
do i=1, n
|
|
if (idiag(i) <= 0) then
|
|
info = -1
|
|
return
|
|
endif
|
|
y(ie+i-1,:) = y(ie+i-1,:)/val(i,idiag(i))
|
|
acc = y(ie+i-1,:)
|
|
do j=idiag(i)+1, irn(i)
|
|
jc = ja(i,j)
|
|
y(jc,:) = y(jc,:) - val(i,j)*acc
|
|
end do
|
|
end do
|
|
|
|
end if
|
|
|
|
end if
|
|
|
|
else if (ctra) then
|
|
|
|
if (lower) then
|
|
|
|
if (unit) then
|
|
|
|
do i=n, 1, -1
|
|
acc = y(ie+i-1,:)
|
|
|
|
do j=1,irn(i)
|
|
jc = ja(i,j)
|
|
y(jc,:) = y(jc,:) - (val(i,j))*acc
|
|
end do
|
|
|
|
end do
|
|
|
|
else if (.not.unit) then
|
|
|
|
do i=n, 1, -1
|
|
if (idiag(i) <= 0) then
|
|
info = -1
|
|
return
|
|
endif
|
|
y(ie+i-1,:) = y(ie+i-1,:)/(val(i,idiag(i)))
|
|
acc = y(ie+i-1,:)
|
|
do j=1,idiag(i) -1
|
|
jc = ja(i,j)
|
|
y(jc,:) = y(jc,:) - (val(i,j))*acc
|
|
end do
|
|
end do
|
|
|
|
end if
|
|
|
|
else if (.not.lower) then
|
|
|
|
if (unit) then
|
|
|
|
do i=1, n
|
|
acc = y(ie+i-1,:)
|
|
do j=1, irn(i)
|
|
jc = ja(i,j)
|
|
y(jc,:) = y(jc,:) - (val(i,j))*acc
|
|
end do
|
|
end do
|
|
|
|
else if (.not.unit) then
|
|
|
|
do i=1, n
|
|
if (idiag(i) <= 0) then
|
|
info = -1
|
|
return
|
|
endif
|
|
y(ie+i-1,:) = y(ie+i-1,:)/(val(i,idiag(i)))
|
|
acc = y(ie+i-1,:)
|
|
do j=idiag(i)+1, irn(i)
|
|
jc = ja(i,j)
|
|
y(jc,:) = y(jc,:) - (val(i,j))*acc
|
|
end do
|
|
end do
|
|
|
|
end if
|
|
|
|
end if
|
|
end if
|
|
end subroutine inner_hllsm
|
|
|
|
|
|
end subroutine psb_s_hll_cssm
|