|
|
@ -37,13 +37,13 @@
|
|
|
|
!
|
|
|
|
!
|
|
|
|
! Arguments:
|
|
|
|
! Arguments:
|
|
|
|
!
|
|
|
|
!
|
|
|
|
subroutine psi_symm_dep_list(rvsz,adj,idxmap,info,flag)
|
|
|
|
subroutine psi_symm_dep_list_inrv(rvsz,adj,ictxt,info)
|
|
|
|
use psb_serial_mod
|
|
|
|
use psb_serial_mod
|
|
|
|
use psb_const_mod
|
|
|
|
use psb_const_mod
|
|
|
|
use psb_error_mod
|
|
|
|
use psb_error_mod
|
|
|
|
use psb_penv_mod
|
|
|
|
use psb_penv_mod
|
|
|
|
use psb_realloc_mod
|
|
|
|
use psb_realloc_mod
|
|
|
|
use psb_indx_map_mod, psb_protect_name => psi_symm_dep_list
|
|
|
|
use psb_indx_map_mod, psb_protect_name => psi_symm_dep_list_inrv
|
|
|
|
#ifdef MPI_MOD
|
|
|
|
#ifdef MPI_MOD
|
|
|
|
use mpi
|
|
|
|
use mpi
|
|
|
|
#endif
|
|
|
|
#endif
|
|
|
@ -54,30 +54,23 @@ subroutine psi_symm_dep_list(rvsz,adj,idxmap,info,flag)
|
|
|
|
#endif
|
|
|
|
#endif
|
|
|
|
integer(psb_mpk_), intent(inout) :: rvsz(0:)
|
|
|
|
integer(psb_mpk_), intent(inout) :: rvsz(0:)
|
|
|
|
integer(psb_ipk_), allocatable, intent(inout) :: adj(:)
|
|
|
|
integer(psb_ipk_), allocatable, intent(inout) :: adj(:)
|
|
|
|
class(psb_indx_map), intent(in) :: idxmap
|
|
|
|
integer(psb_ipk_), intent(in) :: ictxt
|
|
|
|
integer(psb_ipk_), intent(out) :: info
|
|
|
|
integer(psb_ipk_), intent(out) :: info
|
|
|
|
integer(psb_ipk_), intent(in), optional :: flag
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
!
|
|
|
|
!
|
|
|
|
integer(psb_ipk_), allocatable :: ladj(:)
|
|
|
|
integer(psb_ipk_), allocatable :: ladj(:)
|
|
|
|
integer(psb_mpk_), allocatable :: sdsz(:)
|
|
|
|
integer(psb_mpk_) :: icomm, minfo
|
|
|
|
integer(psb_mpk_) :: icomm, minfo, iictxt
|
|
|
|
|
|
|
|
integer(psb_ipk_) :: i,n_row,n_col,err_act,hsize,ip,&
|
|
|
|
integer(psb_ipk_) :: i,n_row,n_col,err_act,hsize,ip,&
|
|
|
|
& last_ih, last_j, nidx, nrecv, nadj, flag_
|
|
|
|
& last_ih, last_j, nidx, nrecv, nadj, flag_
|
|
|
|
integer(psb_lpk_) :: mglob, ih
|
|
|
|
integer(psb_lpk_) :: mglob, ih
|
|
|
|
integer(psb_ipk_) :: ictxt,np,me
|
|
|
|
integer(psb_ipk_) :: np,me
|
|
|
|
character(len=20) :: name
|
|
|
|
character(len=20) :: name
|
|
|
|
|
|
|
|
|
|
|
|
info = psb_success_
|
|
|
|
info = psb_success_
|
|
|
|
name = 'psi_symm_dep_list'
|
|
|
|
name = 'psi_symm_dep_list'
|
|
|
|
call psb_erractionsave(err_act)
|
|
|
|
call psb_erractionsave(err_act)
|
|
|
|
|
|
|
|
|
|
|
|
ictxt = idxmap%get_ctxt()
|
|
|
|
icomm = psb_get_mpicomm(ictxt)
|
|
|
|
icomm = idxmap%get_mpic()
|
|
|
|
|
|
|
|
mglob = idxmap%get_gr()
|
|
|
|
|
|
|
|
n_row = idxmap%get_lr()
|
|
|
|
|
|
|
|
n_col = idxmap%get_lc()
|
|
|
|
|
|
|
|
iictxt = ictxt
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
call psb_info(ictxt, me, np)
|
|
|
|
call psb_info(ictxt, me, np)
|
|
|
|
|
|
|
|
|
|
|
@ -87,38 +80,92 @@ subroutine psi_symm_dep_list(rvsz,adj,idxmap,info,flag)
|
|
|
|
goto 9999
|
|
|
|
goto 9999
|
|
|
|
endif
|
|
|
|
endif
|
|
|
|
|
|
|
|
|
|
|
|
if (.not.(idxmap%is_valid())) then
|
|
|
|
|
|
|
|
call psb_errpush(psb_err_from_subroutine_,name,a_err='invalid idxmap')
|
|
|
|
|
|
|
|
goto 9999
|
|
|
|
|
|
|
|
end if
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
nadj = size(adj)
|
|
|
|
nadj = size(adj)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
!
|
|
|
|
|
|
|
|
! Am getting this from the outside, possibly from the wrapper call
|
|
|
|
|
|
|
|
!
|
|
|
|
if (size(rvsz)<np) then
|
|
|
|
if (size(rvsz)<np) then
|
|
|
|
call psb_errpush(psb_err_from_subroutine_,name,a_err='invalid rvsz')
|
|
|
|
call psb_errpush(psb_err_from_subroutine_,name,a_err='invalid rvsz')
|
|
|
|
goto 9999
|
|
|
|
goto 9999
|
|
|
|
end if
|
|
|
|
end if
|
|
|
|
|
|
|
|
nrecv = 0
|
|
|
|
|
|
|
|
do ip=0, np-1
|
|
|
|
|
|
|
|
if (rvsz(ip) > 0) nrecv = nrecv + 1
|
|
|
|
|
|
|
|
end do
|
|
|
|
|
|
|
|
|
|
|
|
if (present(flag)) then
|
|
|
|
!
|
|
|
|
flag_ = flag
|
|
|
|
! Now fix adj to be symmetric
|
|
|
|
else
|
|
|
|
!
|
|
|
|
flag_ = psi_symm_flag_norv_
|
|
|
|
call psb_realloc(nadj+nrecv,ladj,info)
|
|
|
|
|
|
|
|
ladj(1:nadj) = adj(1:nadj)
|
|
|
|
|
|
|
|
do ip=0, np-1
|
|
|
|
|
|
|
|
if (rvsz(ip)>0) then
|
|
|
|
|
|
|
|
nadj = nadj + 1
|
|
|
|
|
|
|
|
ladj(nadj) = ip
|
|
|
|
end if
|
|
|
|
end if
|
|
|
|
|
|
|
|
end do
|
|
|
|
|
|
|
|
call psb_msort_unique(ladj,nadj)
|
|
|
|
|
|
|
|
call psb_realloc(nadj,adj,info)
|
|
|
|
|
|
|
|
if (info == 0) adj(1:nadj) = ladj(1:nadj)
|
|
|
|
|
|
|
|
|
|
|
|
select case(flag_)
|
|
|
|
call psb_erractionrestore(err_act)
|
|
|
|
case(psi_symm_flag_norv_, psi_symm_flag_inrv_)
|
|
|
|
return
|
|
|
|
! Ok, keep going
|
|
|
|
|
|
|
|
case default
|
|
|
|
|
|
|
|
call psb_errpush(psb_err_from_subroutine_,name,a_err='invalid flag')
|
|
|
|
|
|
|
|
goto 9999
|
|
|
|
|
|
|
|
end select
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
9999 call psb_error_handler(ictxt,err_act)
|
|
|
|
|
|
|
|
|
|
|
|
if (flag_ == psi_symm_flag_norv_) then
|
|
|
|
return
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
end subroutine psi_symm_dep_list_inrv
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
subroutine psi_symm_dep_list_norv(adj,ictxt,info)
|
|
|
|
|
|
|
|
use psb_serial_mod
|
|
|
|
|
|
|
|
use psb_const_mod
|
|
|
|
|
|
|
|
use psb_error_mod
|
|
|
|
|
|
|
|
use psb_penv_mod
|
|
|
|
|
|
|
|
use psb_realloc_mod
|
|
|
|
|
|
|
|
use psb_indx_map_mod, psb_protect_name => psi_symm_dep_list_norv
|
|
|
|
|
|
|
|
#ifdef MPI_MOD
|
|
|
|
|
|
|
|
use mpi
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
implicit none
|
|
|
|
|
|
|
|
#ifdef MPI_H
|
|
|
|
|
|
|
|
include 'mpif.h'
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
integer(psb_ipk_), allocatable, intent(inout) :: adj(:)
|
|
|
|
|
|
|
|
integer(psb_ipk_), intent(in) :: ictxt
|
|
|
|
|
|
|
|
integer(psb_ipk_), intent(out) :: info
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
!
|
|
|
|
|
|
|
|
integer(psb_mpk_), allocatable :: rvsz(:), sdsz(:)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
integer(psb_mpk_) :: icomm, minfo
|
|
|
|
|
|
|
|
integer(psb_ipk_) :: i,n_row,n_col,err_act,hsize,ip,&
|
|
|
|
|
|
|
|
& last_ih, last_j, nidx, nrecv, nadj
|
|
|
|
|
|
|
|
integer(psb_ipk_) :: mglob, ih
|
|
|
|
|
|
|
|
integer(psb_ipk_) :: np,me
|
|
|
|
|
|
|
|
character(len=20) :: name
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
info = psb_success_
|
|
|
|
|
|
|
|
name = 'psi_symm_dep_list'
|
|
|
|
|
|
|
|
call psb_erractionsave(err_act)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
icomm = psb_get_mpicomm(ictxt)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
call psb_info(ictxt, me, np)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if (np == -1) then
|
|
|
|
|
|
|
|
info = psb_err_context_error_
|
|
|
|
|
|
|
|
call psb_errpush(info,name)
|
|
|
|
|
|
|
|
goto 9999
|
|
|
|
|
|
|
|
endif
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
nadj = size(adj)
|
|
|
|
|
|
|
|
|
|
|
|
! write(0,*) me,name,' Going through ',nidx,nadj
|
|
|
|
! write(0,*) me,name,' Going through ',nidx,nadj
|
|
|
|
|
|
|
|
|
|
|
|
Allocate(sdsz(0:np-1), stat=info)
|
|
|
|
Allocate(sdsz(0:np-1), rvsz(0:np-1), stat=info)
|
|
|
|
!
|
|
|
|
!
|
|
|
|
! First, send sizes according to adjcncy list
|
|
|
|
! First, send sizes according to adjcncy list
|
|
|
|
!
|
|
|
|
!
|
|
|
@ -130,28 +177,12 @@ subroutine psi_symm_dep_list(rvsz,adj,idxmap,info,flag)
|
|
|
|
|
|
|
|
|
|
|
|
call mpi_alltoall(sdsz,1,psb_mpi_mpk_,&
|
|
|
|
call mpi_alltoall(sdsz,1,psb_mpi_mpk_,&
|
|
|
|
& rvsz,1,psb_mpi_mpk_,icomm,minfo)
|
|
|
|
& rvsz,1,psb_mpi_mpk_,icomm,minfo)
|
|
|
|
|
|
|
|
if (minfo == 0) call psi_symm_dep_list(rvsz,adj,ictxt,info)
|
|
|
|
|
|
|
|
if ((minfo /=0).or.(info /= 0)) then
|
|
|
|
|
|
|
|
call psb_errpush(psb_err_from_subroutine_,name,a_err='inner call symm_dep')
|
|
|
|
|
|
|
|
goto 9999
|
|
|
|
end if
|
|
|
|
end if
|
|
|
|
|
|
|
|
|
|
|
|
nrecv = 0
|
|
|
|
|
|
|
|
do ip=0, np-1
|
|
|
|
|
|
|
|
if (rvsz(ip) > 0) nrecv = nrecv + 1
|
|
|
|
|
|
|
|
end do
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
!
|
|
|
|
|
|
|
|
! Now fix adj to be symmetric
|
|
|
|
|
|
|
|
!
|
|
|
|
|
|
|
|
call psb_realloc(nadj+nrecv,ladj,info)
|
|
|
|
|
|
|
|
ladj(1:nadj) = adj(1:nadj)
|
|
|
|
|
|
|
|
do ip=0, np-1
|
|
|
|
|
|
|
|
if (rvsz(ip)>0) then
|
|
|
|
|
|
|
|
nadj = nadj + 1
|
|
|
|
|
|
|
|
ladj(nadj+1:nadj+nrecv) = ip
|
|
|
|
|
|
|
|
end if
|
|
|
|
|
|
|
|
end do
|
|
|
|
|
|
|
|
call psb_msort_unique(ladj,nadj)
|
|
|
|
|
|
|
|
call psb_realloc(nadj,adj,info)
|
|
|
|
|
|
|
|
adj(1:nadj) = ladj(1:nadj)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
call psb_erractionrestore(err_act)
|
|
|
|
call psb_erractionrestore(err_act)
|
|
|
|
return
|
|
|
|
return
|
|
|
|
|
|
|
|
|
|
|
@ -159,4 +190,4 @@ subroutine psi_symm_dep_list(rvsz,adj,idxmap,info,flag)
|
|
|
|
|
|
|
|
|
|
|
|
return
|
|
|
|
return
|
|
|
|
|
|
|
|
|
|
|
|
end subroutine psi_symm_dep_list
|
|
|
|
end subroutine psi_symm_dep_list_norv
|
|
|
|