! ! Parallel Sparse BLAS version 3.5 ! (C) Copyright 2006-2018 ! Salvatore Filippone ! Alfredo Buttari ! ! 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. ! ! Moved here from AMG-AINV, original copyright below. ! ! ! AMG-AINV: Approximate Inverse plugin for ! AMG4PSBLAS version 1.0 ! ! (C) Copyright 2020 ! ! Salvatore Filippone University of Rome Tor Vergata ! ! 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 AMG4PSBLAS 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 AMG4PSBLAS 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. ! ! ! ! ! ! AMG-AINV: Approximate Inverse plugin for ! AMG4PSBLAS version 1.0 ! ! (C) Copyright 2020 ! ! Salvatore Filippone University of Rome Tor Vergata ! ! 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 AMG4PSBLAS 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 AMG4PSBLAS 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. ! ! module psb_z_biconjg_mod interface psb_sparse_biconjg module procedure psb_zsparse_biconjg end interface abstract interface subroutine psb_zsparse_biconjg_variant(n,a,p,z,w,nzrmax,sp_thresh,info) use psb_base_mod, only : psb_z_csr_sparse_mat, psb_z_csc_sparse_mat, & & psb_dpk_, psb_ipk_ ! implicit none integer(psb_ipk_), intent(in) :: n type(psb_z_csr_sparse_mat), intent(in) :: a type(psb_z_csc_sparse_mat), intent(inout) :: z,w integer(psb_ipk_), intent(in) :: nzrmax real(psb_dpk_), intent(in) :: sp_thresh complex(psb_dpk_), intent(out) :: p(:) integer(psb_ipk_), intent(out) :: info end subroutine psb_zsparse_biconjg_variant end interface procedure(psb_zsparse_biconjg_variant) :: psb_zsparse_biconjg_llk,& & psb_zsparse_biconjg_s_llk, psb_zsparse_biconjg_s_ft_llk,& & psb_zsparse_biconjg_llk_noth, psb_zsparse_biconjg_mlk #if defined(HAVE_TUMA_SAINV) procedure(psb_zsparse_biconjg_variant) :: psb_zsparse_tuma_sainv,& & psb_zsparse_tuma_lainv #endif contains subroutine psb_zsparse_biconjg(alg,n,acsr,p,z,w,nzrmax,sp_thresh,info) use psb_base_mod use psb_base_ainv_mod integer(psb_ipk_), intent(in) :: alg,n type(psb_z_csr_sparse_mat), intent(in) :: acsr type(psb_zspmat_type), intent(out) :: z, w integer(psb_ipk_), intent(in) :: nzrmax real(psb_dpk_), intent(in) :: sp_thresh complex(psb_dpk_), intent(out) :: p(:) integer(psb_ipk_), intent(out) :: info type(psb_z_csc_sparse_mat) :: zcsc,wcsc integer(psb_ipk_) :: i,j,k,nrm integer(psb_ipk_) :: err_act character(len=20) :: name='psb_sparse_biconjg' integer(psb_ipk_), parameter :: variant=1 info = psb_success_ call psb_erractionsave(err_act) if (psb_errstatus_fatal()) then info = psb_err_internal_error_; goto 9999 end if if (size(p) m) .or. (nx > n)) then write(0,*) 'Wrong input spmspv rows: ',m,ny,& & ' cols: ',n,nx info = -4 return end if allocate(iv(m), vv(m), stat=info) if (info /= 0) then write(0,*) 'Allocation error in spmspv' info = -999 return endif do i = 1, nx j = ix(i) ! Access column J of A k = a%icp(j) na = a%icp(j+1) - a%icp(j) call psb_nspaxpby(nv,iv,vv,& & (alpha*vx(i)), na, a%ia(k:k+na-1), a%val(k:k+na-1),& & zone, ny, iy, vy, info) if (info /= 0) then write(0,*) 'Internal error in spmspv from nspaxpby' info = -998 return endif if (nv > iszy) then write(0,*) 'Error in spmspv: out of memory for output' info = -997 return endif ny = nv iy(1:ny) = iv(1:ny) vy(1:ny) = vv(1:ny) end do end subroutine psb_z_spmspv subroutine psb_z_spvspm(alpha,a,nx,ix,vx,beta,ny,iy,vy, info) ! ! y = x A sparse-sparse mode, A in CSR ! use psb_base_mod implicit none integer(psb_ipk_), intent(in) :: nx, ix(:) complex(psb_dpk_), intent(in) :: alpha, beta, vx(:) integer(psb_ipk_), intent(inout) :: ny, iy(:) complex(psb_dpk_), intent(inout) :: vy(:) type(psb_z_csr_sparse_mat), intent(in) :: a integer(psb_ipk_), intent(out) :: info integer(psb_ipk_) :: i,j,k,m,n, nv, na, iszy integer(psb_ipk_), allocatable :: iv(:) complex(psb_dpk_), allocatable :: vv(:) info = 0 ! !$ write(0,*) 'd_spvspm ',alpha,beta if (beta == -zone) then do i=1, ny vy(i) = -vy(i) end do else if (beta == zzero) then do i=1, ny vy(i) = zzero end do else if (beta /= zone) then do i=1, ny vy(i) = vy(i) * beta end do end if if (alpha == zzero) return iszy = min(size(iy),size(vy)) m = a%get_nrows() n = a%get_ncols() if ((ny > m) .or. (nx > n)) then write(0,*) 'Wrong input spmspv rows: ',m,ny,& & ' cols: ',n,nx info = -4 return end if allocate(iv(m), vv(m), stat=info) if (info /= 0) then write(0,*) 'Allocation error in spmspv' info = -999 return endif do i = 1, nx j = ix(i) ! Access column J of A k = a%irp(j) na = a%irp(j+1) - a%irp(j) call psb_nspaxpby(nv,iv,vv,& & (alpha*vx(i)), na, a%ja(k:k+na-1), a%val(k:k+na-1),& & zone, ny, iy, vy, info) if (info /= 0) then write(0,*) 'Internal error in spmspv from nspaxpby' info = -998 return endif if (nv > iszy) then write(0,*) 'Error in spmspv: out of memory for output' info = -997 return endif ny = nv iy(1:ny) = iv(1:ny) vy(1:ny) = vv(1:ny) end do end subroutine psb_z_spvspm end module psb_z_biconjg_mod