parent
96304ec351
commit
217e6b2a52
@ -1,349 +0,0 @@
|
|||||||
!!$
|
|
||||||
!!$ Parallel Sparse BLAS v2.0
|
|
||||||
!!$ (C) Copyright 2006 Salvatore Filippone University of Rome Tor Vergata
|
|
||||||
!!$ Alfredo Buttari 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 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.
|
|
||||||
!!$
|
|
||||||
!!$
|
|
||||||
module psi_gthsct_mod
|
|
||||||
|
|
||||||
interface psi_gth
|
|
||||||
module procedure psi_igthm, psi_igthv,&
|
|
||||||
& psi_dgthm, psi_dgthv,&
|
|
||||||
& psi_zgthm, psi_zgthv
|
|
||||||
end interface
|
|
||||||
|
|
||||||
interface psi_sct
|
|
||||||
module procedure psi_isctm, psi_isctv,&
|
|
||||||
& psi_dsctm, psi_dsctv,&
|
|
||||||
& psi_zsctm, psi_zsctv
|
|
||||||
end interface
|
|
||||||
|
|
||||||
contains
|
|
||||||
|
|
||||||
subroutine psi_dgthm(n,k,idx,x,y)
|
|
||||||
|
|
||||||
implicit none
|
|
||||||
|
|
||||||
integer :: n, k, idx(:)
|
|
||||||
real(kind(1.d0)) :: x(:,:), y(:)
|
|
||||||
|
|
||||||
! Locals
|
|
||||||
integer :: i, j, pt
|
|
||||||
|
|
||||||
pt=0
|
|
||||||
do j=1,k
|
|
||||||
do i=1,n
|
|
||||||
pt=pt+1
|
|
||||||
y(pt)=x(idx(i),j)
|
|
||||||
end do
|
|
||||||
end do
|
|
||||||
|
|
||||||
end subroutine psi_dgthm
|
|
||||||
|
|
||||||
subroutine psi_dgthv(n,idx,x,y)
|
|
||||||
|
|
||||||
implicit none
|
|
||||||
|
|
||||||
integer :: n, idx(:)
|
|
||||||
real(kind(1.d0)) :: x(:), y(:)
|
|
||||||
|
|
||||||
! Locals
|
|
||||||
integer :: i, j
|
|
||||||
|
|
||||||
do i=1,n
|
|
||||||
y(i)=x(idx(i))
|
|
||||||
end do
|
|
||||||
|
|
||||||
end subroutine psi_dgthv
|
|
||||||
|
|
||||||
|
|
||||||
subroutine psi_dsctm(n,k,idx,x,beta,y)
|
|
||||||
|
|
||||||
implicit none
|
|
||||||
|
|
||||||
integer :: n, k, idx(:)
|
|
||||||
real(kind(1.d0)) :: beta, x(:), y(:,:)
|
|
||||||
|
|
||||||
! Locals
|
|
||||||
integer :: i, j, pt
|
|
||||||
|
|
||||||
if (beta.eq.0.d0) then
|
|
||||||
pt=0
|
|
||||||
do j=1,k
|
|
||||||
do i=1,n
|
|
||||||
pt=pt+1
|
|
||||||
y(idx(i),j) = x(pt)
|
|
||||||
end do
|
|
||||||
end do
|
|
||||||
else if (beta.eq.1.d0) then
|
|
||||||
pt=0
|
|
||||||
do j=1,k
|
|
||||||
do i=1,n
|
|
||||||
pt=pt+1
|
|
||||||
y(idx(i),j) = y(idx(i),j)+x(pt)
|
|
||||||
end do
|
|
||||||
end do
|
|
||||||
else
|
|
||||||
pt=0
|
|
||||||
do j=1,k
|
|
||||||
do i=1,n
|
|
||||||
pt=pt+1
|
|
||||||
y(idx(i),j) = beta*y(idx(i),j)+x(pt)
|
|
||||||
end do
|
|
||||||
end do
|
|
||||||
end if
|
|
||||||
end subroutine psi_dsctm
|
|
||||||
|
|
||||||
subroutine psi_dsctv(n,idx,x,beta,y)
|
|
||||||
|
|
||||||
implicit none
|
|
||||||
|
|
||||||
integer :: n, k, idx(:)
|
|
||||||
real(kind(1.d0)) :: beta, x(:), y(:)
|
|
||||||
|
|
||||||
! Locals
|
|
||||||
integer :: i, j, pt
|
|
||||||
|
|
||||||
if (beta.eq.0.d0) then
|
|
||||||
do i=1,n
|
|
||||||
y(idx(i)) = x(i)
|
|
||||||
end do
|
|
||||||
else if (beta.eq.1.d0) then
|
|
||||||
do i=1,n
|
|
||||||
y(idx(i)) = y(idx(i))+x(i)
|
|
||||||
end do
|
|
||||||
else
|
|
||||||
do i=1,n
|
|
||||||
y(idx(i)) = beta*y(idx(i))+x(i)
|
|
||||||
end do
|
|
||||||
end if
|
|
||||||
end subroutine psi_dsctv
|
|
||||||
|
|
||||||
|
|
||||||
subroutine psi_igthm(n,k,idx,x,y)
|
|
||||||
|
|
||||||
implicit none
|
|
||||||
|
|
||||||
integer :: n, k, idx(:)
|
|
||||||
integer :: x(:,:), y(:)
|
|
||||||
|
|
||||||
! Locals
|
|
||||||
integer :: i, j, pt
|
|
||||||
|
|
||||||
pt=0
|
|
||||||
do j=1,k
|
|
||||||
do i=1,n
|
|
||||||
pt=pt+1
|
|
||||||
y(pt)=x(idx(i),j)
|
|
||||||
end do
|
|
||||||
end do
|
|
||||||
|
|
||||||
end subroutine psi_igthm
|
|
||||||
|
|
||||||
|
|
||||||
subroutine psi_igthv(n,idx,x,y)
|
|
||||||
|
|
||||||
implicit none
|
|
||||||
|
|
||||||
integer :: n, idx(:)
|
|
||||||
integer :: x(:), y(:)
|
|
||||||
|
|
||||||
! Locals
|
|
||||||
integer :: i, j
|
|
||||||
|
|
||||||
do i=1,n
|
|
||||||
y(i)=x(idx(i))
|
|
||||||
end do
|
|
||||||
|
|
||||||
end subroutine psi_igthv
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
subroutine psi_isctm(n,k,idx,x,beta,y)
|
|
||||||
|
|
||||||
implicit none
|
|
||||||
|
|
||||||
integer :: n, k, idx(:)
|
|
||||||
integer :: beta, x(:), y(:,:)
|
|
||||||
|
|
||||||
! Locals
|
|
||||||
integer :: i, j, pt
|
|
||||||
|
|
||||||
if (beta.eq.0.d0) then
|
|
||||||
pt=0
|
|
||||||
do j=1,k
|
|
||||||
do i=1,n
|
|
||||||
pt=pt+1
|
|
||||||
y(idx(i),j) = x(pt)
|
|
||||||
end do
|
|
||||||
end do
|
|
||||||
else if (beta.eq.1.d0) then
|
|
||||||
pt=0
|
|
||||||
do j=1,k
|
|
||||||
do i=1,n
|
|
||||||
pt=pt+1
|
|
||||||
y(idx(i),j) = y(idx(i),j)+x(pt)
|
|
||||||
end do
|
|
||||||
end do
|
|
||||||
else
|
|
||||||
pt=0
|
|
||||||
do j=1,k
|
|
||||||
do i=1,n
|
|
||||||
pt=pt+1
|
|
||||||
y(idx(i),j) = beta*y(idx(i),j)+x(pt)
|
|
||||||
end do
|
|
||||||
end do
|
|
||||||
end if
|
|
||||||
end subroutine psi_isctm
|
|
||||||
|
|
||||||
subroutine psi_isctv(n,idx,x,beta,y)
|
|
||||||
|
|
||||||
implicit none
|
|
||||||
|
|
||||||
integer :: n, k, idx(:)
|
|
||||||
integer :: beta, x(:), y(:)
|
|
||||||
|
|
||||||
! Locals
|
|
||||||
integer :: i, j, pt
|
|
||||||
|
|
||||||
if (beta.eq.0.d0) then
|
|
||||||
do i=1,n
|
|
||||||
y(idx(i)) = x(i)
|
|
||||||
end do
|
|
||||||
else if (beta.eq.1.d0) then
|
|
||||||
do i=1,n
|
|
||||||
y(idx(i)) = y(idx(i))+x(i)
|
|
||||||
end do
|
|
||||||
else
|
|
||||||
do i=1,n
|
|
||||||
y(idx(i)) = beta*y(idx(i))+x(i)
|
|
||||||
end do
|
|
||||||
end if
|
|
||||||
end subroutine psi_isctv
|
|
||||||
|
|
||||||
|
|
||||||
subroutine psi_zgthm(n,k,idx,x,y)
|
|
||||||
|
|
||||||
implicit none
|
|
||||||
|
|
||||||
integer :: n, k, idx(:)
|
|
||||||
complex(kind(1.d0)) :: x(:,:), y(:)
|
|
||||||
|
|
||||||
! Locals
|
|
||||||
integer :: i, j, pt
|
|
||||||
|
|
||||||
pt=0
|
|
||||||
do j=1,k
|
|
||||||
do i=1,n
|
|
||||||
pt=pt+1
|
|
||||||
y(pt)=x(idx(i),j)
|
|
||||||
end do
|
|
||||||
end do
|
|
||||||
|
|
||||||
end subroutine psi_zgthm
|
|
||||||
|
|
||||||
|
|
||||||
subroutine psi_zgthv(n,idx,x,y)
|
|
||||||
|
|
||||||
implicit none
|
|
||||||
|
|
||||||
integer :: n, idx(:)
|
|
||||||
complex(kind(1.d0)) :: x(:), y(:)
|
|
||||||
|
|
||||||
! Locals
|
|
||||||
integer :: i, j
|
|
||||||
|
|
||||||
do i=1,n
|
|
||||||
y(i)=x(idx(i))
|
|
||||||
end do
|
|
||||||
|
|
||||||
end subroutine psi_zgthv
|
|
||||||
|
|
||||||
subroutine psi_zsctm(n,k,idx,x,beta,y)
|
|
||||||
|
|
||||||
implicit none
|
|
||||||
|
|
||||||
integer :: n, k, idx(:)
|
|
||||||
complex(kind(1.d0)) :: beta, x(:), y(:,:)
|
|
||||||
|
|
||||||
! Locals
|
|
||||||
integer :: i, j, pt
|
|
||||||
|
|
||||||
if (beta.eq.0.d0) then
|
|
||||||
pt=0
|
|
||||||
do j=1,k
|
|
||||||
do i=1,n
|
|
||||||
pt=pt+1
|
|
||||||
y(idx(i),j) = x(pt)
|
|
||||||
end do
|
|
||||||
end do
|
|
||||||
else if (beta.eq.1.d0) then
|
|
||||||
pt=0
|
|
||||||
do j=1,k
|
|
||||||
do i=1,n
|
|
||||||
pt=pt+1
|
|
||||||
y(idx(i),j) = y(idx(i),j)+x(pt)
|
|
||||||
end do
|
|
||||||
end do
|
|
||||||
else
|
|
||||||
pt=0
|
|
||||||
do j=1,k
|
|
||||||
do i=1,n
|
|
||||||
pt=pt+1
|
|
||||||
y(idx(i),j) = beta*y(idx(i),j)+x(pt)
|
|
||||||
end do
|
|
||||||
end do
|
|
||||||
end if
|
|
||||||
end subroutine psi_zsctm
|
|
||||||
|
|
||||||
|
|
||||||
subroutine psi_zsctv(n,idx,x,beta,y)
|
|
||||||
|
|
||||||
implicit none
|
|
||||||
|
|
||||||
integer :: n, k, idx(:)
|
|
||||||
complex(kind(1.d0)) :: beta, x(:), y(:)
|
|
||||||
|
|
||||||
! Locals
|
|
||||||
integer :: i, j, pt
|
|
||||||
|
|
||||||
if (beta.eq.0.d0) then
|
|
||||||
do i=1,n
|
|
||||||
y(idx(i)) = x(i)
|
|
||||||
end do
|
|
||||||
else if (beta.eq.1.d0) then
|
|
||||||
do i=1,n
|
|
||||||
y(idx(i)) = y(idx(i))+x(i)
|
|
||||||
end do
|
|
||||||
else
|
|
||||||
do i=1,n
|
|
||||||
y(idx(i)) = beta*y(idx(i))+x(i)
|
|
||||||
end do
|
|
||||||
end if
|
|
||||||
end subroutine psi_zsctv
|
|
||||||
|
|
||||||
end module psi_gthsct_mod
|
|
@ -0,0 +1,236 @@
|
|||||||
|
!!$
|
||||||
|
!!$ Parallel Sparse BLAS v2.0
|
||||||
|
!!$ (C) Copyright 2006 Salvatore Filippone University of Rome Tor Vergata
|
||||||
|
!!$ Alfredo Buttari 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 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_dbjac_bld(a,desc_a,p,upd,info)
|
||||||
|
use psb_base_mod
|
||||||
|
use psb_prec_mod, psb_protect_name => psb_dbjac_bld
|
||||||
|
implicit none
|
||||||
|
!
|
||||||
|
! .. Scalar Arguments ..
|
||||||
|
integer, intent(out) :: info
|
||||||
|
! .. array Arguments ..
|
||||||
|
type(psb_dspmat_type), intent(in), target :: a
|
||||||
|
type(psb_dprec_type), intent(inout) :: p
|
||||||
|
type(psb_desc_type), intent(in) :: desc_a
|
||||||
|
character, intent(in) :: upd
|
||||||
|
|
||||||
|
! .. Local Scalars ..
|
||||||
|
integer :: i, j, jj, k, kk, m
|
||||||
|
integer :: int_err(5)
|
||||||
|
character :: trans, unitd
|
||||||
|
type(psb_dspmat_type) :: blck, atmp
|
||||||
|
real(kind(1.d0)) :: t1,t2,t3,t4,t5,t6, t7, t8
|
||||||
|
logical, parameter :: debugprt=.false., debug=.false., aggr_dump=.false.
|
||||||
|
integer nztota, nztotb, nztmp, nzl, nnr, ir, err_act,&
|
||||||
|
& n_row, nrow_a,n_col, nhalo, ind, iind, i1,i2,ia
|
||||||
|
integer :: ictxt,np,me
|
||||||
|
character(len=20) :: name, ch_err
|
||||||
|
|
||||||
|
|
||||||
|
if(psb_get_errstatus().ne.0) return
|
||||||
|
info=0
|
||||||
|
name='psb_dbjac_bld'
|
||||||
|
call psb_erractionsave(err_act)
|
||||||
|
|
||||||
|
ictxt=psb_cd_get_context(desc_a)
|
||||||
|
call psb_info(ictxt, me, np)
|
||||||
|
|
||||||
|
m = a%m
|
||||||
|
if (m < 0) then
|
||||||
|
info = 10
|
||||||
|
int_err(1) = 1
|
||||||
|
int_err(2) = m
|
||||||
|
call psb_errpush(info,name,i_err=int_err)
|
||||||
|
goto 9999
|
||||||
|
endif
|
||||||
|
trans = 'N'
|
||||||
|
unitd = 'U'
|
||||||
|
call psb_nullify_sp(atmp)
|
||||||
|
|
||||||
|
call psb_cdcpy(desc_a,p%desc_data,info)
|
||||||
|
if(info /= 0) then
|
||||||
|
info=4010
|
||||||
|
ch_err='psb_cdcpy'
|
||||||
|
call psb_errpush(info,name,a_err=ch_err)
|
||||||
|
goto 9999
|
||||||
|
end if
|
||||||
|
|
||||||
|
|
||||||
|
select case(p%iprcparm(f_type_))
|
||||||
|
|
||||||
|
case(f_ilu_n_,f_ilu_e_)
|
||||||
|
|
||||||
|
if (allocated(p%av)) then
|
||||||
|
if (size(p%av) < bp_ilu_avsz) then
|
||||||
|
do i=1,size(p%av)
|
||||||
|
call psb_sp_free(p%av(i),info)
|
||||||
|
if (info /= 0) then
|
||||||
|
! Actually, we don't care here about this.
|
||||||
|
! Just let it go.
|
||||||
|
! return
|
||||||
|
end if
|
||||||
|
enddo
|
||||||
|
deallocate(p%av,stat=info)
|
||||||
|
endif
|
||||||
|
end if
|
||||||
|
if (.not.allocated(p%av)) then
|
||||||
|
allocate(p%av(max_avsz),stat=info)
|
||||||
|
if (info /= 0) then
|
||||||
|
call psb_errpush(4000,name)
|
||||||
|
goto 9999
|
||||||
|
end if
|
||||||
|
endif
|
||||||
|
!!$ call psb_csprt(50+me,a,head='% (A)')
|
||||||
|
|
||||||
|
nrow_a = psb_cd_get_local_rows(desc_a)
|
||||||
|
nztota = psb_sp_get_nnzeros(a)
|
||||||
|
if (debug) write(0,*)me,': out get_nnzeros',nztota
|
||||||
|
if (debug) call psb_barrier(ictxt)
|
||||||
|
|
||||||
|
n_col = psb_cd_get_local_cols(desc_a)
|
||||||
|
nhalo = n_col-nrow_a
|
||||||
|
n_row = p%desc_data%matrix_data(psb_n_row_)
|
||||||
|
p%av(l_pr_)%m = n_row
|
||||||
|
p%av(l_pr_)%k = n_row
|
||||||
|
p%av(u_pr_)%m = n_row
|
||||||
|
p%av(u_pr_)%k = n_row
|
||||||
|
call psb_sp_all(n_row,n_row,p%av(l_pr_),nztota,info)
|
||||||
|
if (info == 0) call psb_sp_all(n_row,n_row,p%av(u_pr_),nztota,info)
|
||||||
|
if(info/=0) then
|
||||||
|
info=4010
|
||||||
|
ch_err='psb_sp_all'
|
||||||
|
call psb_errpush(info,name,a_err=ch_err)
|
||||||
|
goto 9999
|
||||||
|
end if
|
||||||
|
|
||||||
|
if (allocated(p%d)) then
|
||||||
|
if (size(p%d) < n_row) then
|
||||||
|
deallocate(p%d)
|
||||||
|
endif
|
||||||
|
endif
|
||||||
|
if (.not.allocated(p%d)) then
|
||||||
|
allocate(p%d(n_row),stat=info)
|
||||||
|
if (info /= 0) then
|
||||||
|
call psb_errpush(4010,name,a_err='Allocate')
|
||||||
|
goto 9999
|
||||||
|
end if
|
||||||
|
|
||||||
|
endif
|
||||||
|
t3 = psb_wtime()
|
||||||
|
! This is where we have mo renumbering, thus no need
|
||||||
|
! for ATMP
|
||||||
|
|
||||||
|
if (debugprt) then
|
||||||
|
open(40+me)
|
||||||
|
call psb_barrier(ictxt)
|
||||||
|
call psb_csprt(40+me,a,iv=p%desc_data%loc_to_glob,&
|
||||||
|
& head='% Local matrix')
|
||||||
|
close(40+me)
|
||||||
|
endif
|
||||||
|
|
||||||
|
t5= psb_wtime()
|
||||||
|
if (debug) write(0,*) me,' Going for ilu_fct'
|
||||||
|
if (debug) call psb_barrier(ictxt)
|
||||||
|
call psb_ilu_fct(a,p%av(l_pr_),p%av(u_pr_),p%d,info)
|
||||||
|
if(info/=0) then
|
||||||
|
info=4010
|
||||||
|
ch_err='psb_ilu_fct'
|
||||||
|
call psb_errpush(info,name,a_err=ch_err)
|
||||||
|
goto 9999
|
||||||
|
end if
|
||||||
|
if (debug) write(0,*) me,' Done dilu_fct'
|
||||||
|
|
||||||
|
|
||||||
|
if (debugprt) then
|
||||||
|
!
|
||||||
|
! Print out the factors on file.
|
||||||
|
!
|
||||||
|
open(80+me)
|
||||||
|
|
||||||
|
call psb_csprt(80+me,p%av(l_pr_),head='% Local L factor')
|
||||||
|
write(80+me,*) '% Diagonal: ',p%av(l_pr_)%m
|
||||||
|
do i=1,p%av(l_pr_)%m
|
||||||
|
write(80+me,*) i,i,p%d(i)
|
||||||
|
enddo
|
||||||
|
call psb_csprt(80+me,p%av(u_pr_),head='% Local U factor')
|
||||||
|
|
||||||
|
close(80+me)
|
||||||
|
end if
|
||||||
|
|
||||||
|
! ierr = MPE_Log_event( ifcte, 0, "st SIMPLE" )
|
||||||
|
t6 = psb_wtime()
|
||||||
|
!
|
||||||
|
! write(0,'(i3,1x,a,3(1x,g18.9))') me,'renum/factor time',t3-t2,t6-t5
|
||||||
|
! if (me==0) write(0,'(a,3(1x,g18.9))') 'renum/factor time',t3-t2,t6-t5
|
||||||
|
|
||||||
|
if (psb_sp_getifld(psb_upd_,p%av(u_pr_),info) /= psb_upd_perm_) then
|
||||||
|
call psb_sp_trimsize(p%av(u_pr_),i1,i2,ia,info)
|
||||||
|
if (info == 0) call psb_sp_reall(p%av(u_pr_),i1,i2,ia,info)
|
||||||
|
endif
|
||||||
|
|
||||||
|
if (psb_sp_getifld(psb_upd_,p%av(l_pr_),info) /= psb_upd_perm_) then
|
||||||
|
call psb_sp_trimsize(p%av(l_pr_),i1,i2,ia,info)
|
||||||
|
if (info == 0) call psb_sp_reall(p%av(l_pr_),i1,i2,ia,info)
|
||||||
|
endif
|
||||||
|
|
||||||
|
|
||||||
|
case(f_none_)
|
||||||
|
write(0,*) 'Fact=None in BASEPRC_BLD Bja/ASM??'
|
||||||
|
info=4010
|
||||||
|
ch_err='Inconsistent prec f_none_'
|
||||||
|
call psb_errpush(info,name,a_err=ch_err)
|
||||||
|
goto 9999
|
||||||
|
|
||||||
|
case default
|
||||||
|
write(0,*) 'Unknown factor type in baseprc_bld bja/asm: ',&
|
||||||
|
&p%iprcparm(f_type_)
|
||||||
|
info=4010
|
||||||
|
ch_err='Unknown f_type_'
|
||||||
|
call psb_errpush(info,name,a_err=ch_err)
|
||||||
|
goto 9999
|
||||||
|
end select
|
||||||
|
|
||||||
|
|
||||||
|
if (debug) write(0,*) me,'End of ilu_bld'
|
||||||
|
call psb_erractionrestore(err_act)
|
||||||
|
return
|
||||||
|
|
||||||
|
9999 continue
|
||||||
|
call psb_erractionrestore(err_act)
|
||||||
|
if (err_act.eq.psb_act_abort_) then
|
||||||
|
call psb_error()
|
||||||
|
return
|
||||||
|
end if
|
||||||
|
return
|
||||||
|
|
||||||
|
|
||||||
|
end subroutine psb_dbjac_bld
|
||||||
|
|
||||||
|
|
@ -1,195 +0,0 @@
|
|||||||
!!$
|
|
||||||
!!$ Parallel Sparse BLAS v2.0
|
|
||||||
!!$ (C) Copyright 2006 Salvatore Filippone University of Rome Tor Vergata
|
|
||||||
!!$ Alfredo Buttari 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 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_dilu_bld(a,desc_a,p,upd,info)
|
|
||||||
use psb_base_mod
|
|
||||||
use psb_prec_mod, psb_protect_name => psb_dilu_bld
|
|
||||||
implicit none
|
|
||||||
!
|
|
||||||
! .. Scalar Arguments ..
|
|
||||||
integer, intent(out) :: info
|
|
||||||
! .. array Arguments ..
|
|
||||||
type(psb_dspmat_type), intent(in), target :: a
|
|
||||||
type(psb_dprec_type), intent(inout) :: p
|
|
||||||
type(psb_desc_type), intent(in) :: desc_a
|
|
||||||
character, intent(in) :: upd
|
|
||||||
|
|
||||||
! .. Local Scalars ..
|
|
||||||
integer :: i, j, jj, k, kk, m
|
|
||||||
integer :: int_err(5)
|
|
||||||
character :: trans, unitd
|
|
||||||
type(psb_dspmat_type) :: blck, atmp
|
|
||||||
real(kind(1.d0)) :: t1,t2,t3,t4,t5,t6, t7, t8
|
|
||||||
logical, parameter :: debugprt=.false., debug=.false., aggr_dump=.false.
|
|
||||||
integer nztota, nztotb, nztmp, nzl, nnr, ir, err_act,&
|
|
||||||
& n_row, nrow_a,n_col, nhalo, ind, iind, i1,i2,ia
|
|
||||||
integer :: ictxt,np,me
|
|
||||||
character(len=20) :: name, ch_err
|
|
||||||
|
|
||||||
|
|
||||||
if(psb_get_errstatus().ne.0) return
|
|
||||||
info=0
|
|
||||||
name='psb_dilu_bld'
|
|
||||||
call psb_erractionsave(err_act)
|
|
||||||
|
|
||||||
ictxt=psb_cd_get_context(desc_a)
|
|
||||||
call psb_info(ictxt, me, np)
|
|
||||||
|
|
||||||
m = a%m
|
|
||||||
if (m < 0) then
|
|
||||||
info = 10
|
|
||||||
int_err(1) = 1
|
|
||||||
int_err(2) = m
|
|
||||||
call psb_errpush(info,name,i_err=int_err)
|
|
||||||
goto 9999
|
|
||||||
endif
|
|
||||||
trans = 'N'
|
|
||||||
unitd = 'U'
|
|
||||||
call psb_nullify_sp(atmp)
|
|
||||||
|
|
||||||
if (allocated(p%av)) then
|
|
||||||
if (size(p%av) < bp_ilu_avsz) then
|
|
||||||
call psb_errpush(4010,name,a_err='Insufficient av size')
|
|
||||||
goto 9999
|
|
||||||
endif
|
|
||||||
else
|
|
||||||
call psb_errpush(4010,name,a_err='AV not associated')
|
|
||||||
goto 9999
|
|
||||||
endif
|
|
||||||
!!$ call psb_csprt(50+me,a,head='% (A)')
|
|
||||||
|
|
||||||
nrow_a = psb_cd_get_local_rows(desc_a)
|
|
||||||
nztota = psb_sp_get_nnzeros(a)
|
|
||||||
if (debug) write(0,*)me,': out get_nnzeros',nztota
|
|
||||||
if (debug) call psb_barrier(ictxt)
|
|
||||||
|
|
||||||
n_col = psb_cd_get_local_cols(desc_a)
|
|
||||||
nhalo = n_col-nrow_a
|
|
||||||
n_row = p%desc_data%matrix_data(psb_n_row_)
|
|
||||||
p%av(l_pr_)%m = n_row
|
|
||||||
p%av(l_pr_)%k = n_row
|
|
||||||
p%av(u_pr_)%m = n_row
|
|
||||||
p%av(u_pr_)%k = n_row
|
|
||||||
call psb_sp_all(n_row,n_row,p%av(l_pr_),nztota,info)
|
|
||||||
if (info == 0) call psb_sp_all(n_row,n_row,p%av(u_pr_),nztota,info)
|
|
||||||
if(info/=0) then
|
|
||||||
info=4010
|
|
||||||
ch_err='psb_sp_all'
|
|
||||||
call psb_errpush(info,name,a_err=ch_err)
|
|
||||||
goto 9999
|
|
||||||
end if
|
|
||||||
|
|
||||||
if (allocated(p%d)) then
|
|
||||||
if (size(p%d) < n_row) then
|
|
||||||
deallocate(p%d)
|
|
||||||
endif
|
|
||||||
endif
|
|
||||||
if (.not.allocated(p%d)) then
|
|
||||||
allocate(p%d(n_row),stat=info)
|
|
||||||
if (info /= 0) then
|
|
||||||
call psb_errpush(4010,name,a_err='Allocate')
|
|
||||||
goto 9999
|
|
||||||
end if
|
|
||||||
|
|
||||||
endif
|
|
||||||
t3 = psb_wtime()
|
|
||||||
! This is where we have mo renumbering, thus no need
|
|
||||||
! for ATMP
|
|
||||||
|
|
||||||
if (debugprt) then
|
|
||||||
open(40+me)
|
|
||||||
call psb_barrier(ictxt)
|
|
||||||
call psb_csprt(40+me,a,iv=p%desc_data%loc_to_glob,&
|
|
||||||
& head='% Local matrix')
|
|
||||||
close(40+me)
|
|
||||||
endif
|
|
||||||
|
|
||||||
t5= psb_wtime()
|
|
||||||
if (debug) write(0,*) me,' Going for ilu_fct'
|
|
||||||
if (debug) call psb_barrier(ictxt)
|
|
||||||
call psb_ilu_fct(a,p%av(l_pr_),p%av(u_pr_),p%d,info)
|
|
||||||
if(info/=0) then
|
|
||||||
info=4010
|
|
||||||
ch_err='psb_ilu_fct'
|
|
||||||
call psb_errpush(info,name,a_err=ch_err)
|
|
||||||
goto 9999
|
|
||||||
end if
|
|
||||||
if (debug) write(0,*) me,' Done dilu_fct'
|
|
||||||
|
|
||||||
|
|
||||||
if (debugprt) then
|
|
||||||
!
|
|
||||||
! Print out the factors on file.
|
|
||||||
!
|
|
||||||
open(80+me)
|
|
||||||
|
|
||||||
call psb_csprt(80+me,p%av(l_pr_),head='% Local L factor')
|
|
||||||
write(80+me,*) '% Diagonal: ',p%av(l_pr_)%m
|
|
||||||
do i=1,p%av(l_pr_)%m
|
|
||||||
write(80+me,*) i,i,p%d(i)
|
|
||||||
enddo
|
|
||||||
call psb_csprt(80+me,p%av(u_pr_),head='% Local U factor')
|
|
||||||
|
|
||||||
close(80+me)
|
|
||||||
end if
|
|
||||||
|
|
||||||
! ierr = MPE_Log_event( ifcte, 0, "st SIMPLE" )
|
|
||||||
t6 = psb_wtime()
|
|
||||||
!
|
|
||||||
! write(0,'(i3,1x,a,3(1x,g18.9))') me,'renum/factor time',t3-t2,t6-t5
|
|
||||||
! if (me==0) write(0,'(a,3(1x,g18.9))') 'renum/factor time',t3-t2,t6-t5
|
|
||||||
|
|
||||||
if (psb_sp_getifld(psb_upd_,p%av(u_pr_),info) /= psb_upd_perm_) then
|
|
||||||
call psb_sp_trimsize(p%av(u_pr_),i1,i2,ia,info)
|
|
||||||
if (info == 0) call psb_sp_reall(p%av(u_pr_),i1,i2,ia,info)
|
|
||||||
endif
|
|
||||||
|
|
||||||
if (psb_sp_getifld(psb_upd_,p%av(l_pr_),info) /= psb_upd_perm_) then
|
|
||||||
call psb_sp_trimsize(p%av(l_pr_),i1,i2,ia,info)
|
|
||||||
if (info == 0) call psb_sp_reall(p%av(l_pr_),i1,i2,ia,info)
|
|
||||||
endif
|
|
||||||
|
|
||||||
|
|
||||||
if (debug) write(0,*) me,'End of ilu_bld'
|
|
||||||
call psb_erractionrestore(err_act)
|
|
||||||
return
|
|
||||||
|
|
||||||
9999 continue
|
|
||||||
call psb_erractionrestore(err_act)
|
|
||||||
if (err_act.eq.psb_act_abort_) then
|
|
||||||
call psb_error()
|
|
||||||
return
|
|
||||||
end if
|
|
||||||
return
|
|
||||||
|
|
||||||
|
|
||||||
end subroutine psb_dilu_bld
|
|
||||||
|
|
||||||
|
|
@ -0,0 +1,236 @@
|
|||||||
|
!!$
|
||||||
|
!!$ Parallel Sparse BLAS v2.0
|
||||||
|
!!$ (C) Copyright 2006 Salvatore Filippone University of Rome Tor Vergata
|
||||||
|
!!$ Alfredo Buttari 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 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_zbjac_bld(a,desc_a,p,upd,info)
|
||||||
|
use psb_base_mod
|
||||||
|
use psb_prec_mod, psb_protect_name => psb_zbjac_bld
|
||||||
|
implicit none
|
||||||
|
!
|
||||||
|
! .. Scalar Arguments ..
|
||||||
|
integer, intent(out) :: info
|
||||||
|
! .. array Arguments ..
|
||||||
|
type(psb_zspmat_type), intent(in), target :: a
|
||||||
|
type(psb_zprec_type), intent(inout) :: p
|
||||||
|
type(psb_desc_type), intent(in) :: desc_a
|
||||||
|
character, intent(in) :: upd
|
||||||
|
|
||||||
|
! .. Local Scalars ..
|
||||||
|
integer :: i, j, jj, k, kk, m
|
||||||
|
integer :: int_err(5)
|
||||||
|
character :: trans, unitd
|
||||||
|
type(psb_zspmat_type) :: blck, atmp
|
||||||
|
real(kind(1.d0)) :: t1,t2,t3,t4,t5,t6, t7, t8
|
||||||
|
logical, parameter :: debugprt=.false., debug=.false., aggr_dump=.false.
|
||||||
|
integer nztota, nztotb, nztmp, nzl, nnr, ir, err_act,&
|
||||||
|
& n_row, nrow_a,n_col, nhalo, ind, iind, i1,i2,ia
|
||||||
|
integer :: ictxt,np,me
|
||||||
|
character(len=20) :: name, ch_err
|
||||||
|
|
||||||
|
|
||||||
|
if(psb_get_errstatus().ne.0) return
|
||||||
|
info=0
|
||||||
|
name='psb_zbjac_bld'
|
||||||
|
call psb_erractionsave(err_act)
|
||||||
|
|
||||||
|
ictxt=psb_cd_get_context(desc_a)
|
||||||
|
call psb_info(ictxt, me, np)
|
||||||
|
|
||||||
|
m = a%m
|
||||||
|
if (m < 0) then
|
||||||
|
info = 10
|
||||||
|
int_err(1) = 1
|
||||||
|
int_err(2) = m
|
||||||
|
call psb_errpush(info,name,i_err=int_err)
|
||||||
|
goto 9999
|
||||||
|
endif
|
||||||
|
trans = 'N'
|
||||||
|
unitd = 'U'
|
||||||
|
call psb_nullify_sp(atmp)
|
||||||
|
|
||||||
|
call psb_cdcpy(desc_a,p%desc_data,info)
|
||||||
|
if(info /= 0) then
|
||||||
|
info=4010
|
||||||
|
ch_err='psb_cdcpy'
|
||||||
|
call psb_errpush(info,name,a_err=ch_err)
|
||||||
|
goto 9999
|
||||||
|
end if
|
||||||
|
|
||||||
|
|
||||||
|
select case(p%iprcparm(f_type_))
|
||||||
|
|
||||||
|
case(f_ilu_n_,f_ilu_e_)
|
||||||
|
|
||||||
|
if (allocated(p%av)) then
|
||||||
|
if (size(p%av) < bp_ilu_avsz) then
|
||||||
|
do i=1,size(p%av)
|
||||||
|
call psb_sp_free(p%av(i),info)
|
||||||
|
if (info /= 0) then
|
||||||
|
! Actually, we don't care here about this.
|
||||||
|
! Just let it go.
|
||||||
|
! return
|
||||||
|
end if
|
||||||
|
enddo
|
||||||
|
deallocate(p%av,stat=info)
|
||||||
|
endif
|
||||||
|
end if
|
||||||
|
if (.not.allocated(p%av)) then
|
||||||
|
allocate(p%av(max_avsz),stat=info)
|
||||||
|
if (info /= 0) then
|
||||||
|
call psb_errpush(4000,name)
|
||||||
|
goto 9999
|
||||||
|
end if
|
||||||
|
endif
|
||||||
|
!!$ call psb_csprt(50+me,a,head='% (A)')
|
||||||
|
|
||||||
|
nrow_a = psb_cd_get_local_rows(desc_a)
|
||||||
|
nztota = psb_sp_get_nnzeros(a)
|
||||||
|
if (debug) write(0,*)me,': out get_nnzeros',nztota
|
||||||
|
if (debug) call psb_barrier(ictxt)
|
||||||
|
|
||||||
|
n_col = psb_cd_get_local_cols(desc_a)
|
||||||
|
nhalo = n_col-nrow_a
|
||||||
|
n_row = p%desc_data%matrix_data(psb_n_row_)
|
||||||
|
p%av(l_pr_)%m = n_row
|
||||||
|
p%av(l_pr_)%k = n_row
|
||||||
|
p%av(u_pr_)%m = n_row
|
||||||
|
p%av(u_pr_)%k = n_row
|
||||||
|
call psb_sp_all(n_row,n_row,p%av(l_pr_),nztota,info)
|
||||||
|
if (info == 0) call psb_sp_all(n_row,n_row,p%av(u_pr_),nztota,info)
|
||||||
|
if(info/=0) then
|
||||||
|
info=4010
|
||||||
|
ch_err='psb_sp_all'
|
||||||
|
call psb_errpush(info,name,a_err=ch_err)
|
||||||
|
goto 9999
|
||||||
|
end if
|
||||||
|
|
||||||
|
if (allocated(p%d)) then
|
||||||
|
if (size(p%d) < n_row) then
|
||||||
|
deallocate(p%d)
|
||||||
|
endif
|
||||||
|
endif
|
||||||
|
if (.not.allocated(p%d)) then
|
||||||
|
allocate(p%d(n_row),stat=info)
|
||||||
|
if (info /= 0) then
|
||||||
|
call psb_errpush(4010,name,a_err='Allocate')
|
||||||
|
goto 9999
|
||||||
|
end if
|
||||||
|
|
||||||
|
endif
|
||||||
|
t3 = psb_wtime()
|
||||||
|
! This is where we have mo renumbering, thus no need
|
||||||
|
! for ATMP
|
||||||
|
|
||||||
|
if (debugprt) then
|
||||||
|
open(40+me)
|
||||||
|
call psb_barrier(ictxt)
|
||||||
|
call psb_csprt(40+me,a,iv=p%desc_data%loc_to_glob,&
|
||||||
|
& head='% Local matrix')
|
||||||
|
close(40+me)
|
||||||
|
endif
|
||||||
|
|
||||||
|
t5= psb_wtime()
|
||||||
|
if (debug) write(0,*) me,' Going for ilu_fct'
|
||||||
|
if (debug) call psb_barrier(ictxt)
|
||||||
|
call psb_ilu_fct(a,p%av(l_pr_),p%av(u_pr_),p%d,info)
|
||||||
|
if(info/=0) then
|
||||||
|
info=4010
|
||||||
|
ch_err='psb_ilu_fct'
|
||||||
|
call psb_errpush(info,name,a_err=ch_err)
|
||||||
|
goto 9999
|
||||||
|
end if
|
||||||
|
if (debug) write(0,*) me,' Done dilu_fct'
|
||||||
|
|
||||||
|
|
||||||
|
if (debugprt) then
|
||||||
|
!
|
||||||
|
! Print out the factors on file.
|
||||||
|
!
|
||||||
|
open(80+me)
|
||||||
|
|
||||||
|
call psb_csprt(80+me,p%av(l_pr_),head='% Local L factor')
|
||||||
|
write(80+me,*) '% Diagonal: ',p%av(l_pr_)%m
|
||||||
|
do i=1,p%av(l_pr_)%m
|
||||||
|
write(80+me,*) i,i,p%d(i)
|
||||||
|
enddo
|
||||||
|
call psb_csprt(80+me,p%av(u_pr_),head='% Local U factor')
|
||||||
|
|
||||||
|
close(80+me)
|
||||||
|
end if
|
||||||
|
|
||||||
|
! ierr = MPE_Log_event( ifcte, 0, "st SIMPLE" )
|
||||||
|
t6 = psb_wtime()
|
||||||
|
!
|
||||||
|
! write(0,'(i3,1x,a,3(1x,g18.9))') me,'renum/factor time',t3-t2,t6-t5
|
||||||
|
! if (me==0) write(0,'(a,3(1x,g18.9))') 'renum/factor time',t3-t2,t6-t5
|
||||||
|
|
||||||
|
if (psb_sp_getifld(psb_upd_,p%av(u_pr_),info) /= psb_upd_perm_) then
|
||||||
|
call psb_sp_trimsize(p%av(u_pr_),i1,i2,ia,info)
|
||||||
|
if (info == 0) call psb_sp_reall(p%av(u_pr_),i1,i2,ia,info)
|
||||||
|
endif
|
||||||
|
|
||||||
|
if (psb_sp_getifld(psb_upd_,p%av(l_pr_),info) /= psb_upd_perm_) then
|
||||||
|
call psb_sp_trimsize(p%av(l_pr_),i1,i2,ia,info)
|
||||||
|
if (info == 0) call psb_sp_reall(p%av(l_pr_),i1,i2,ia,info)
|
||||||
|
endif
|
||||||
|
|
||||||
|
|
||||||
|
case(f_none_)
|
||||||
|
write(0,*) 'Fact=None in BASEPRC_BLD Bja/ASM??'
|
||||||
|
info=4010
|
||||||
|
ch_err='Inconsistent prec f_none_'
|
||||||
|
call psb_errpush(info,name,a_err=ch_err)
|
||||||
|
goto 9999
|
||||||
|
|
||||||
|
case default
|
||||||
|
write(0,*) 'Unknown factor type in baseprc_bld bja/asm: ',&
|
||||||
|
&p%iprcparm(f_type_)
|
||||||
|
info=4010
|
||||||
|
ch_err='Unknown f_type_'
|
||||||
|
call psb_errpush(info,name,a_err=ch_err)
|
||||||
|
goto 9999
|
||||||
|
end select
|
||||||
|
|
||||||
|
|
||||||
|
if (debug) write(0,*) me,'End of ilu_bld'
|
||||||
|
call psb_erractionrestore(err_act)
|
||||||
|
return
|
||||||
|
|
||||||
|
9999 continue
|
||||||
|
call psb_erractionrestore(err_act)
|
||||||
|
if (err_act.eq.psb_act_abort_) then
|
||||||
|
call psb_error()
|
||||||
|
return
|
||||||
|
end if
|
||||||
|
return
|
||||||
|
|
||||||
|
|
||||||
|
end subroutine psb_zbjac_bld
|
||||||
|
|
||||||
|
|
@ -1,197 +0,0 @@
|
|||||||
!!$
|
|
||||||
!!$ Parallel Sparse BLAS v2.0
|
|
||||||
!!$ (C) Copyright 2006 Salvatore Filippone University of Rome Tor Vergata
|
|
||||||
!!$ Alfredo Buttari 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 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_zilu_bld(a,desc_a,p,upd,info)
|
|
||||||
use psb_base_mod
|
|
||||||
use psb_prec_mod, psb_protect_name => psb_zilu_bld
|
|
||||||
implicit none
|
|
||||||
!
|
|
||||||
! .. Scalar Arguments ..
|
|
||||||
integer, intent(out) :: info
|
|
||||||
! .. array Arguments ..
|
|
||||||
type(psb_zspmat_type), intent(in), target :: a
|
|
||||||
type(psb_zprec_type), intent(inout) :: p
|
|
||||||
type(psb_desc_type), intent(in) :: desc_a
|
|
||||||
character, intent(in) :: upd
|
|
||||||
|
|
||||||
! .. Local Scalars ..
|
|
||||||
integer :: i, j, jj, k, kk, m
|
|
||||||
integer :: int_err(5)
|
|
||||||
character :: trans, unitd
|
|
||||||
type(psb_zspmat_type) :: blck, atmp
|
|
||||||
real(kind(1.d0)) :: t1,t2,t3,t4,t5,t6, t7, t8
|
|
||||||
logical, parameter :: debugprt=.false., debug=.false., aggr_dump=.false.
|
|
||||||
integer nztota, nztotb, nztmp, nzl, nnr, ir, err_act,&
|
|
||||||
& n_row, nrow_a,n_col, nhalo, ind, iind, i1,i2,ia
|
|
||||||
integer :: ictxt,np,me
|
|
||||||
character(len=20) :: name, ch_err
|
|
||||||
|
|
||||||
|
|
||||||
if(psb_get_errstatus().ne.0) return
|
|
||||||
info=0
|
|
||||||
name='psb_zilu_bld'
|
|
||||||
call psb_erractionsave(err_act)
|
|
||||||
|
|
||||||
ictxt=psb_cd_get_context(desc_a)
|
|
||||||
call psb_info(ictxt, me, np)
|
|
||||||
|
|
||||||
m = a%m
|
|
||||||
if (m < 0) then
|
|
||||||
info = 10
|
|
||||||
int_err(1) = 1
|
|
||||||
int_err(2) = m
|
|
||||||
call psb_errpush(info,name,i_err=int_err)
|
|
||||||
goto 9999
|
|
||||||
endif
|
|
||||||
trans = 'N'
|
|
||||||
unitd = 'U'
|
|
||||||
call psb_nullify_sp(atmp)
|
|
||||||
|
|
||||||
if (allocated(p%av)) then
|
|
||||||
if (size(p%av) < bp_ilu_avsz) then
|
|
||||||
call psb_errpush(4010,name,a_err='Insufficient av size')
|
|
||||||
goto 9999
|
|
||||||
endif
|
|
||||||
else
|
|
||||||
call psb_errpush(4010,name,a_err='AV not associated')
|
|
||||||
goto 9999
|
|
||||||
endif
|
|
||||||
!!$ call psb_csprt(50+me,a,head='% (A)')
|
|
||||||
|
|
||||||
nrow_a = psb_cd_get_local_rows(desc_a)
|
|
||||||
nztota = psb_sp_get_nnzeros(a)
|
|
||||||
if (debug) write(0,*)me,': out get_nnzeros',nztota
|
|
||||||
if (debug) call psb_barrier(ictxt)
|
|
||||||
|
|
||||||
n_col = psb_cd_get_local_cols(desc_a)
|
|
||||||
nhalo = n_col-nrow_a
|
|
||||||
n_row = p%desc_data%matrix_data(psb_n_row_)
|
|
||||||
p%av(l_pr_)%m = n_row
|
|
||||||
p%av(l_pr_)%k = n_row
|
|
||||||
p%av(u_pr_)%m = n_row
|
|
||||||
p%av(u_pr_)%k = n_row
|
|
||||||
call psb_sp_all(n_row,n_row,p%av(l_pr_),nztota,info)
|
|
||||||
if (info == 0) call psb_sp_all(n_row,n_row,p%av(u_pr_),nztota,info)
|
|
||||||
if(info/=0) then
|
|
||||||
info=4010
|
|
||||||
ch_err='psb_sp_all'
|
|
||||||
call psb_errpush(info,name,a_err=ch_err)
|
|
||||||
goto 9999
|
|
||||||
end if
|
|
||||||
|
|
||||||
if (allocated(p%d)) then
|
|
||||||
if (size(p%d) < n_row) then
|
|
||||||
deallocate(p%d)
|
|
||||||
endif
|
|
||||||
endif
|
|
||||||
if (.not.allocated(p%d)) then
|
|
||||||
allocate(p%d(n_row),stat=info)
|
|
||||||
if (info /= 0) then
|
|
||||||
call psb_errpush(4010,name,a_err='Allocate')
|
|
||||||
goto 9999
|
|
||||||
end if
|
|
||||||
|
|
||||||
endif
|
|
||||||
|
|
||||||
t3 = psb_wtime()
|
|
||||||
! This is where we have mo renumbering, thus no need
|
|
||||||
! for ATMP
|
|
||||||
|
|
||||||
if (debugprt) then
|
|
||||||
open(40+me)
|
|
||||||
call psb_barrier(ictxt)
|
|
||||||
call psb_csprt(40+me,a,iv=p%desc_data%loc_to_glob,&
|
|
||||||
& head='% Local matrix')
|
|
||||||
close(40+me)
|
|
||||||
endif
|
|
||||||
|
|
||||||
t5= psb_wtime()
|
|
||||||
if (debug) write(0,*) me,' Going for ilu_fct'
|
|
||||||
if (debug) call psb_barrier(ictxt)
|
|
||||||
call psb_ilu_fct(a,p%av(l_pr_),p%av(u_pr_),p%d,info)
|
|
||||||
if(info/=0) then
|
|
||||||
info=4010
|
|
||||||
ch_err='psb_ilu_fct'
|
|
||||||
call psb_errpush(info,name,a_err=ch_err)
|
|
||||||
goto 9999
|
|
||||||
end if
|
|
||||||
if (debug) write(0,*) me,' Done dilu_fct'
|
|
||||||
|
|
||||||
if (debugprt) then
|
|
||||||
!
|
|
||||||
! Print out the factors on file.
|
|
||||||
!
|
|
||||||
open(80+me)
|
|
||||||
|
|
||||||
call psb_csprt(80+me,p%av(l_pr_),head='% Local L factor')
|
|
||||||
write(80+me,*) '% Diagonal: ',p%av(l_pr_)%m
|
|
||||||
do i=1,p%av(l_pr_)%m
|
|
||||||
write(80+me,*) i,i,p%d(i)
|
|
||||||
enddo
|
|
||||||
call psb_csprt(80+me,p%av(u_pr_),head='% Local U factor')
|
|
||||||
|
|
||||||
close(80+me)
|
|
||||||
endif
|
|
||||||
|
|
||||||
|
|
||||||
! ierr = MPE_Log_event( ifcte, 0, "st SIMPLE" )
|
|
||||||
t6 = psb_wtime()
|
|
||||||
!
|
|
||||||
! write(0,'(i3,1x,a,3(1x,g18.9))') me,'renum/factor time',t3-t2,t6-t5
|
|
||||||
! if (me==0) write(0,'(a,3(1x,g18.9))') 'renum/factor time',t3-t2,t6-t5
|
|
||||||
|
|
||||||
if (psb_sp_getifld(psb_upd_,p%av(u_pr_),info) /= psb_upd_perm_) then
|
|
||||||
call psb_sp_trimsize(p%av(u_pr_),i1,i2,ia,info)
|
|
||||||
if (info == 0) call psb_sp_reall(p%av(u_pr_),i1,i2,ia,info)
|
|
||||||
endif
|
|
||||||
|
|
||||||
if (psb_sp_getifld(psb_upd_,p%av(l_pr_),info) /= psb_upd_perm_) then
|
|
||||||
call psb_sp_trimsize(p%av(l_pr_),i1,i2,ia,info)
|
|
||||||
if (info == 0) call psb_sp_reall(p%av(l_pr_),i1,i2,ia,info)
|
|
||||||
endif
|
|
||||||
|
|
||||||
|
|
||||||
if (debug) write(0,*) me,'End of ilu_bld'
|
|
||||||
|
|
||||||
call psb_erractionrestore(err_act)
|
|
||||||
return
|
|
||||||
|
|
||||||
9999 continue
|
|
||||||
call psb_erractionrestore(err_act)
|
|
||||||
if (err_act.eq.psb_act_abort_) then
|
|
||||||
call psb_error()
|
|
||||||
return
|
|
||||||
end if
|
|
||||||
return
|
|
||||||
|
|
||||||
|
|
||||||
end subroutine psb_zilu_bld
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue