|
|
@ -1010,7 +1010,6 @@ subroutine psi_zswapidxv(iictxt,iicomm,flag,beta,y,idx, &
|
|
|
|
|
|
|
|
|
|
|
|
return
|
|
|
|
return
|
|
|
|
end subroutine psi_zswapidxv
|
|
|
|
end subroutine psi_zswapidxv
|
|
|
|
|
|
|
|
|
|
|
|
!
|
|
|
|
!
|
|
|
|
!
|
|
|
|
!
|
|
|
|
! Subroutine: psi_zswapdata_vect
|
|
|
|
! Subroutine: psi_zswapdata_vect
|
|
|
@ -1351,3 +1350,343 @@ subroutine psi_zswap_vidx_vect(iictxt,iicomm,flag,beta,y,idx, &
|
|
|
|
return
|
|
|
|
return
|
|
|
|
end subroutine psi_zswap_vidx_vect
|
|
|
|
end subroutine psi_zswap_vidx_vect
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
!
|
|
|
|
|
|
|
|
!
|
|
|
|
|
|
|
|
! Subroutine: psi_zswapdata_multivect
|
|
|
|
|
|
|
|
! Data exchange among processes.
|
|
|
|
|
|
|
|
!
|
|
|
|
|
|
|
|
! Takes care of Y an exanspulated multivector.
|
|
|
|
|
|
|
|
!
|
|
|
|
|
|
|
|
!
|
|
|
|
|
|
|
|
!
|
|
|
|
|
|
|
|
subroutine psi_zswapdata_multivect(flag,beta,y,desc_a,work,info,data)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
use psi_mod, psb_protect_name => psi_zswapdata_multivect
|
|
|
|
|
|
|
|
use psb_z_base_multivect_mod
|
|
|
|
|
|
|
|
use psb_error_mod
|
|
|
|
|
|
|
|
use psb_desc_mod
|
|
|
|
|
|
|
|
use psb_penv_mod
|
|
|
|
|
|
|
|
#ifdef MPI_MOD
|
|
|
|
|
|
|
|
use mpi
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
implicit none
|
|
|
|
|
|
|
|
#ifdef MPI_H
|
|
|
|
|
|
|
|
include 'mpif.h'
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
integer(psb_ipk_), intent(in) :: flag
|
|
|
|
|
|
|
|
integer(psb_ipk_), intent(out) :: info
|
|
|
|
|
|
|
|
class(psb_z_base_multivect_type) :: y
|
|
|
|
|
|
|
|
complex(psb_dpk_) :: beta
|
|
|
|
|
|
|
|
complex(psb_dpk_), target :: work(:)
|
|
|
|
|
|
|
|
type(psb_desc_type), target :: desc_a
|
|
|
|
|
|
|
|
integer(psb_ipk_), optional :: data
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
! locals
|
|
|
|
|
|
|
|
integer(psb_ipk_) :: ictxt, np, me, icomm, idxs, idxr, totxch, data_, err_act
|
|
|
|
|
|
|
|
class(psb_i_base_vect_type), pointer :: d_vidx
|
|
|
|
|
|
|
|
character(len=20) :: name
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
info=psb_success_
|
|
|
|
|
|
|
|
name='psi_swap_datav'
|
|
|
|
|
|
|
|
call psb_erractionsave(err_act)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ictxt=desc_a%get_context()
|
|
|
|
|
|
|
|
icomm = desc_a%get_mpic()
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
call psb_info(ictxt,me,np)
|
|
|
|
|
|
|
|
if (np == -1) then
|
|
|
|
|
|
|
|
info=psb_err_context_error_
|
|
|
|
|
|
|
|
call psb_errpush(info,name)
|
|
|
|
|
|
|
|
goto 9999
|
|
|
|
|
|
|
|
endif
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if (.not.psb_is_asb_desc(desc_a)) then
|
|
|
|
|
|
|
|
info=psb_err_invalid_cd_state_
|
|
|
|
|
|
|
|
call psb_errpush(info,name)
|
|
|
|
|
|
|
|
goto 9999
|
|
|
|
|
|
|
|
endif
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if(present(data)) then
|
|
|
|
|
|
|
|
data_ = data
|
|
|
|
|
|
|
|
else
|
|
|
|
|
|
|
|
data_ = psb_comm_halo_
|
|
|
|
|
|
|
|
end if
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
call desc_a%get_list(data_,d_vidx,totxch,idxr,idxs,info)
|
|
|
|
|
|
|
|
if (info /= psb_success_) then
|
|
|
|
|
|
|
|
call psb_errpush(psb_err_internal_error_,name,a_err='psb_cd_get_list')
|
|
|
|
|
|
|
|
goto 9999
|
|
|
|
|
|
|
|
end if
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
call psi_swapdata(ictxt,icomm,flag,beta,y,d_vidx,totxch,idxs,idxr,work,info)
|
|
|
|
|
|
|
|
if (info /= psb_success_) goto 9999
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
call psb_erractionrestore(err_act)
|
|
|
|
|
|
|
|
return
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
9999 call psb_error_handler(ictxt,err_act)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
return
|
|
|
|
|
|
|
|
end subroutine psi_zswapdata_multivect
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
!
|
|
|
|
|
|
|
|
!
|
|
|
|
|
|
|
|
! Subroutine: psi_zswap_vidx_multivect
|
|
|
|
|
|
|
|
! Data exchange among processes.
|
|
|
|
|
|
|
|
!
|
|
|
|
|
|
|
|
! Takes care of Y an exanspulated multivector. Relies on the gather/scatter methods
|
|
|
|
|
|
|
|
! of multivectors.
|
|
|
|
|
|
|
|
!
|
|
|
|
|
|
|
|
! The real workhorse: the outer routine will only choose the index list
|
|
|
|
|
|
|
|
! this one takes the index list and does the actual exchange.
|
|
|
|
|
|
|
|
!
|
|
|
|
|
|
|
|
!
|
|
|
|
|
|
|
|
!
|
|
|
|
|
|
|
|
subroutine psi_zswap_vidx_multivect(iictxt,iicomm,flag,beta,y,idx, &
|
|
|
|
|
|
|
|
& totxch,totsnd,totrcv,work,info)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
use psi_mod, psb_protect_name => psi_zswap_vidx_multivect
|
|
|
|
|
|
|
|
use psb_error_mod
|
|
|
|
|
|
|
|
use psb_realloc_mod
|
|
|
|
|
|
|
|
use psb_desc_mod
|
|
|
|
|
|
|
|
use psb_penv_mod
|
|
|
|
|
|
|
|
use psb_z_base_multivect_mod
|
|
|
|
|
|
|
|
#ifdef MPI_MOD
|
|
|
|
|
|
|
|
use mpi
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
implicit none
|
|
|
|
|
|
|
|
#ifdef MPI_H
|
|
|
|
|
|
|
|
include 'mpif.h'
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
integer(psb_ipk_), intent(in) :: iictxt,iicomm,flag
|
|
|
|
|
|
|
|
integer(psb_ipk_), intent(out) :: info
|
|
|
|
|
|
|
|
class(psb_z_base_multivect_type) :: y
|
|
|
|
|
|
|
|
complex(psb_dpk_) :: beta
|
|
|
|
|
|
|
|
complex(psb_dpk_), target :: work(:)
|
|
|
|
|
|
|
|
class(psb_i_base_vect_type), intent(inout) :: idx
|
|
|
|
|
|
|
|
integer(psb_ipk_), intent(in) :: totxch,totsnd, totrcv
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
! locals
|
|
|
|
|
|
|
|
integer(psb_mpik_) :: ictxt, icomm, np, me,&
|
|
|
|
|
|
|
|
& proc_to_comm, p2ptag, p2pstat(mpi_status_size), iret
|
|
|
|
|
|
|
|
integer(psb_mpik_), allocatable :: prcid(:)
|
|
|
|
|
|
|
|
integer(psb_ipk_) :: nesd, nerv,&
|
|
|
|
|
|
|
|
& err_act, i, idx_pt, totsnd_, totrcv_,&
|
|
|
|
|
|
|
|
& snd_pt, rcv_pt, pnti, n
|
|
|
|
|
|
|
|
integer(psb_ipk_) :: ierr(5)
|
|
|
|
|
|
|
|
logical :: swap_mpi, swap_sync, swap_send, swap_recv,&
|
|
|
|
|
|
|
|
& albf,do_send,do_recv
|
|
|
|
|
|
|
|
logical, parameter :: usersend=.false., debug=.false.
|
|
|
|
|
|
|
|
character(len=20) :: name
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
info=psb_success_
|
|
|
|
|
|
|
|
name='psi_swap_datav'
|
|
|
|
|
|
|
|
call psb_erractionsave(err_act)
|
|
|
|
|
|
|
|
ictxt = iictxt
|
|
|
|
|
|
|
|
icomm = iicomm
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
call psb_info(ictxt,me,np)
|
|
|
|
|
|
|
|
if (np == -1) then
|
|
|
|
|
|
|
|
info=psb_err_context_error_
|
|
|
|
|
|
|
|
call psb_errpush(info,name)
|
|
|
|
|
|
|
|
goto 9999
|
|
|
|
|
|
|
|
endif
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
n=1
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
swap_mpi = iand(flag,psb_swap_mpi_) /= 0
|
|
|
|
|
|
|
|
swap_sync = iand(flag,psb_swap_sync_) /= 0
|
|
|
|
|
|
|
|
swap_send = iand(flag,psb_swap_send_) /= 0
|
|
|
|
|
|
|
|
swap_recv = iand(flag,psb_swap_recv_) /= 0
|
|
|
|
|
|
|
|
do_send = swap_mpi .or. swap_sync .or. swap_send
|
|
|
|
|
|
|
|
do_recv = swap_mpi .or. swap_sync .or. swap_recv
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
totrcv_ = totrcv * n
|
|
|
|
|
|
|
|
totsnd_ = totsnd * n
|
|
|
|
|
|
|
|
call idx%sync()
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if (debug) write(*,*) me,'Internal buffer'
|
|
|
|
|
|
|
|
if (do_send) then
|
|
|
|
|
|
|
|
if (allocated(y%comid)) then
|
|
|
|
|
|
|
|
!
|
|
|
|
|
|
|
|
! Unfinished communication? Something is wrong....
|
|
|
|
|
|
|
|
!
|
|
|
|
|
|
|
|
info=psb_err_mpi_error_
|
|
|
|
|
|
|
|
ierr(1) = -2
|
|
|
|
|
|
|
|
call psb_errpush(info,name,i_err=ierr)
|
|
|
|
|
|
|
|
goto 9999
|
|
|
|
|
|
|
|
end if
|
|
|
|
|
|
|
|
if (debug) write(*,*) me,'do_send start'
|
|
|
|
|
|
|
|
call y%new_buffer(size(idx%v),info)
|
|
|
|
|
|
|
|
call y%new_comid(totxch,info)
|
|
|
|
|
|
|
|
call psb_realloc(totxch,prcid,info)
|
|
|
|
|
|
|
|
! First I post all the non blocking receives
|
|
|
|
|
|
|
|
pnti = 1
|
|
|
|
|
|
|
|
do i=1, totxch
|
|
|
|
|
|
|
|
proc_to_comm = idx%v(pnti+psb_proc_id_)
|
|
|
|
|
|
|
|
nerv = idx%v(pnti+psb_n_elem_recv_)
|
|
|
|
|
|
|
|
nesd = idx%v(pnti+nerv+psb_n_elem_send_)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
rcv_pt = 1+pnti+psb_n_elem_recv_
|
|
|
|
|
|
|
|
call psb_get_rank(prcid(i),ictxt,proc_to_comm)
|
|
|
|
|
|
|
|
if ((nerv>0).and.(proc_to_comm /= me)) then
|
|
|
|
|
|
|
|
if (debug) write(*,*) me,'Posting receive from',prcid(i),rcv_pt
|
|
|
|
|
|
|
|
p2ptag = psb_dcomplex_swap_tag
|
|
|
|
|
|
|
|
call mpi_irecv(y%combuf(rcv_pt),nerv,&
|
|
|
|
|
|
|
|
& psb_mpi_c_dpk_,prcid(i),&
|
|
|
|
|
|
|
|
& p2ptag, icomm,y%comid(i,2),iret)
|
|
|
|
|
|
|
|
end if
|
|
|
|
|
|
|
|
pnti = pnti + nerv + nesd + 3
|
|
|
|
|
|
|
|
end do
|
|
|
|
|
|
|
|
if (debug) write(*,*) me,' Gather '
|
|
|
|
|
|
|
|
!
|
|
|
|
|
|
|
|
! Then gather for sending.
|
|
|
|
|
|
|
|
!
|
|
|
|
|
|
|
|
pnti = 1
|
|
|
|
|
|
|
|
do i=1, totxch
|
|
|
|
|
|
|
|
nerv = idx%v(pnti+psb_n_elem_recv_)
|
|
|
|
|
|
|
|
nesd = idx%v(pnti+nerv+psb_n_elem_send_)
|
|
|
|
|
|
|
|
snd_pt = 1+pnti+nerv+psb_n_elem_send_
|
|
|
|
|
|
|
|
rcv_pt = 1+pnti+psb_n_elem_recv_
|
|
|
|
|
|
|
|
idx_pt = snd_pt
|
|
|
|
|
|
|
|
call y%gth(idx_pt,nesd,idx)
|
|
|
|
|
|
|
|
pnti = pnti + nerv + nesd + 3
|
|
|
|
|
|
|
|
end do
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
!
|
|
|
|
|
|
|
|
! Then wait
|
|
|
|
|
|
|
|
!
|
|
|
|
|
|
|
|
call y%device_wait()
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if (debug) write(*,*) me,' isend'
|
|
|
|
|
|
|
|
!
|
|
|
|
|
|
|
|
! Then send
|
|
|
|
|
|
|
|
!
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
pnti = 1
|
|
|
|
|
|
|
|
snd_pt = 1
|
|
|
|
|
|
|
|
rcv_pt = 1
|
|
|
|
|
|
|
|
p2ptag = psb_dcomplex_swap_tag
|
|
|
|
|
|
|
|
do i=1, totxch
|
|
|
|
|
|
|
|
proc_to_comm = idx%v(pnti+psb_proc_id_)
|
|
|
|
|
|
|
|
nerv = idx%v(pnti+psb_n_elem_recv_)
|
|
|
|
|
|
|
|
nesd = idx%v(pnti+nerv+psb_n_elem_send_)
|
|
|
|
|
|
|
|
snd_pt = 1+pnti+nerv+psb_n_elem_send_
|
|
|
|
|
|
|
|
rcv_pt = 1+pnti+psb_n_elem_recv_
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if ((nesd>0).and.(proc_to_comm /= me)) then
|
|
|
|
|
|
|
|
call mpi_isend(y%combuf(snd_pt),nesd,&
|
|
|
|
|
|
|
|
& psb_mpi_c_dpk_,prcid(i),&
|
|
|
|
|
|
|
|
& p2ptag,icomm,y%comid(i,1),iret)
|
|
|
|
|
|
|
|
end if
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if(iret /= mpi_success) then
|
|
|
|
|
|
|
|
ierr(1) = iret
|
|
|
|
|
|
|
|
info=psb_err_mpi_error_
|
|
|
|
|
|
|
|
call psb_errpush(info,name,i_err=ierr)
|
|
|
|
|
|
|
|
goto 9999
|
|
|
|
|
|
|
|
end if
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
pnti = pnti + nerv + nesd + 3
|
|
|
|
|
|
|
|
end do
|
|
|
|
|
|
|
|
end if
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if (do_recv) then
|
|
|
|
|
|
|
|
if (debug) write(*,*) me,' do_Recv'
|
|
|
|
|
|
|
|
if (.not.allocated(y%comid)) then
|
|
|
|
|
|
|
|
!
|
|
|
|
|
|
|
|
! No matching send? Something is wrong....
|
|
|
|
|
|
|
|
!
|
|
|
|
|
|
|
|
info=psb_err_mpi_error_
|
|
|
|
|
|
|
|
ierr(1) = -2
|
|
|
|
|
|
|
|
call psb_errpush(info,name,i_err=ierr)
|
|
|
|
|
|
|
|
goto 9999
|
|
|
|
|
|
|
|
end if
|
|
|
|
|
|
|
|
call psb_realloc(totxch,prcid,info)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if (debug) write(*,*) me,' wait'
|
|
|
|
|
|
|
|
pnti = 1
|
|
|
|
|
|
|
|
p2ptag = psb_dcomplex_swap_tag
|
|
|
|
|
|
|
|
do i=1, totxch
|
|
|
|
|
|
|
|
proc_to_comm = idx%v(pnti+psb_proc_id_)
|
|
|
|
|
|
|
|
nerv = idx%v(pnti+psb_n_elem_recv_)
|
|
|
|
|
|
|
|
nesd = idx%v(pnti+nerv+psb_n_elem_send_)
|
|
|
|
|
|
|
|
snd_pt = 1+pnti+nerv+psb_n_elem_send_
|
|
|
|
|
|
|
|
rcv_pt = 1+pnti+psb_n_elem_recv_
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if (proc_to_comm /= me)then
|
|
|
|
|
|
|
|
if (nesd>0) then
|
|
|
|
|
|
|
|
call mpi_wait(y%comid(i,1),p2pstat,iret)
|
|
|
|
|
|
|
|
if(iret /= mpi_success) then
|
|
|
|
|
|
|
|
ierr(1) = iret
|
|
|
|
|
|
|
|
info=psb_err_mpi_error_
|
|
|
|
|
|
|
|
call psb_errpush(info,name,i_err=ierr)
|
|
|
|
|
|
|
|
goto 9999
|
|
|
|
|
|
|
|
end if
|
|
|
|
|
|
|
|
end if
|
|
|
|
|
|
|
|
if (nerv>0) then
|
|
|
|
|
|
|
|
call mpi_wait(y%comid(i,2),p2pstat,iret)
|
|
|
|
|
|
|
|
if(iret /= mpi_success) then
|
|
|
|
|
|
|
|
ierr(1) = iret
|
|
|
|
|
|
|
|
info=psb_err_mpi_error_
|
|
|
|
|
|
|
|
call psb_errpush(info,name,i_err=ierr)
|
|
|
|
|
|
|
|
goto 9999
|
|
|
|
|
|
|
|
end if
|
|
|
|
|
|
|
|
end if
|
|
|
|
|
|
|
|
else if (proc_to_comm == me) then
|
|
|
|
|
|
|
|
if (nesd /= nerv) then
|
|
|
|
|
|
|
|
write(psb_err_unit,*) &
|
|
|
|
|
|
|
|
& 'Fatal error in swapdata: mismatch on self send',&
|
|
|
|
|
|
|
|
& nerv,nesd
|
|
|
|
|
|
|
|
end if
|
|
|
|
|
|
|
|
y%combuf(rcv_pt:rcv_pt+nerv-1) = y%combuf(snd_pt:snd_pt+nesd-1)
|
|
|
|
|
|
|
|
end if
|
|
|
|
|
|
|
|
pnti = pnti + nerv + nesd + 3
|
|
|
|
|
|
|
|
end do
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if (debug) write(*,*) me,' scatter'
|
|
|
|
|
|
|
|
pnti = 1
|
|
|
|
|
|
|
|
snd_pt = 1
|
|
|
|
|
|
|
|
rcv_pt = 1
|
|
|
|
|
|
|
|
do i=1, totxch
|
|
|
|
|
|
|
|
proc_to_comm = idx%v(pnti+psb_proc_id_)
|
|
|
|
|
|
|
|
nerv = idx%v(pnti+psb_n_elem_recv_)
|
|
|
|
|
|
|
|
nesd = idx%v(pnti+nerv+psb_n_elem_send_)
|
|
|
|
|
|
|
|
idx_pt = 1+pnti+psb_n_elem_recv_
|
|
|
|
|
|
|
|
snd_pt = 1+pnti+nerv+psb_n_elem_send_
|
|
|
|
|
|
|
|
rcv_pt = 1+pnti+psb_n_elem_recv_
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if (debug) write(0,*)me,' Received from: ',prcid(i),&
|
|
|
|
|
|
|
|
& y%combuf(rcv_pt:rcv_pt+nerv-1)
|
|
|
|
|
|
|
|
call y%sct(rcv_pt,nerv,idx,beta)
|
|
|
|
|
|
|
|
pnti = pnti + nerv + nesd + 3
|
|
|
|
|
|
|
|
end do
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
!
|
|
|
|
|
|
|
|
! Then wait
|
|
|
|
|
|
|
|
!
|
|
|
|
|
|
|
|
if (debug) write(*,*) me,' wait'
|
|
|
|
|
|
|
|
call y%device_wait()
|
|
|
|
|
|
|
|
if (debug) write(*,*) me,' free buffer'
|
|
|
|
|
|
|
|
call y%free_buffer(info)
|
|
|
|
|
|
|
|
if (info == 0) call y%free_comid(info)
|
|
|
|
|
|
|
|
if (info /= 0) then
|
|
|
|
|
|
|
|
call psb_errpush(psb_err_alloc_dealloc_,name)
|
|
|
|
|
|
|
|
goto 9999
|
|
|
|
|
|
|
|
end if
|
|
|
|
|
|
|
|
if (debug) write(*,*) me,' done'
|
|
|
|
|
|
|
|
end if
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
call psb_erractionrestore(err_act)
|
|
|
|
|
|
|
|
return
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
9999 call psb_error_handler(ictxt,err_act)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
return
|
|
|
|
|
|
|
|
end subroutine psi_zswap_vidx_multivect
|
|
|
|
|
|
|
|
|
|
|
|