|
|
@ -1,30 +1,31 @@
|
|
|
|
subroutine psi_iswaptranm(flag,n,beta,y,desc_a,work,info)
|
|
|
|
subroutine psi_dswaptranm(flag,n,beta,y,desc_a,work,info,data)
|
|
|
|
|
|
|
|
|
|
|
|
use psb_error_mod
|
|
|
|
use psb_error_mod
|
|
|
|
use psb_descriptor_type
|
|
|
|
use psb_descriptor_type
|
|
|
|
|
|
|
|
use mpi
|
|
|
|
implicit none
|
|
|
|
implicit none
|
|
|
|
include 'mpif.h'
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
integer, intent(in) :: flag, n
|
|
|
|
integer, intent(in) :: flag, n
|
|
|
|
integer, intent(out) :: info
|
|
|
|
integer, intent(out) :: info
|
|
|
|
integer :: y(:,:), beta
|
|
|
|
real(kind(1.d0)) :: y(:,:), beta
|
|
|
|
integer, target :: work(:)
|
|
|
|
real(kind(1.d0)), target :: work(:)
|
|
|
|
type(psb_desc_type) :: desc_a
|
|
|
|
type(psb_desc_type) :: desc_a
|
|
|
|
|
|
|
|
integer, optional :: data
|
|
|
|
|
|
|
|
|
|
|
|
! locals
|
|
|
|
! locals
|
|
|
|
integer :: icontxt, nprow, npcol, myrow,&
|
|
|
|
integer :: icontxt, nprow, npcol, myrow,&
|
|
|
|
& mycol, point_to_proc, nesd, nerv,&
|
|
|
|
& mycol, point_to_proc, nesd, nerv,&
|
|
|
|
& proc_to_comm, p2ptag, icomm, p2pstat,&
|
|
|
|
& proc_to_comm, p2ptag, icomm, p2pstat(mpi_status_size),&
|
|
|
|
& idxs, idxr, iret, errlen, ifcomm, rank,&
|
|
|
|
& idxs, idxr, iret, errlen, ifcomm, rank,&
|
|
|
|
& err_act, totxch, ixrec, i, lw, idx_pt,&
|
|
|
|
& err_act, totxch, ixrec, i, lw, idx_pt,&
|
|
|
|
& snd_pt, rcv_pt
|
|
|
|
& snd_pt, rcv_pt
|
|
|
|
|
|
|
|
|
|
|
|
integer, pointer, dimension(:) :: bsdidx, brvidx,&
|
|
|
|
integer, pointer, dimension(:) :: bsdidx, brvidx,&
|
|
|
|
& sdsz, rvsz, prcid, ptp, rvhd, h_idx
|
|
|
|
& sdsz, rvsz, prcid, ptp, rvhd, d_idx
|
|
|
|
integer :: int_err(5)
|
|
|
|
integer :: int_err(5)
|
|
|
|
integer :: blacs_pnum, krecvid, ksendid
|
|
|
|
integer :: blacs_pnum, krecvid, ksendid
|
|
|
|
logical :: swap_mpi, swap_sync, swap_send, swap_recv
|
|
|
|
logical :: swap_mpi, swap_sync, swap_send, swap_recv
|
|
|
|
integer, pointer, dimension(:) :: sndbuf, rcvbuf
|
|
|
|
real(kind(1.d0)), pointer, dimension(:) :: sndbuf, rcvbuf
|
|
|
|
character(len=20) :: name, ch_err
|
|
|
|
character(len=20) :: name, ch_err
|
|
|
|
|
|
|
|
|
|
|
|
interface psi_gth
|
|
|
|
interface psi_gth
|
|
|
@ -96,7 +97,19 @@ subroutine psi_iswaptranm(flag,n,beta,y,desc_a,work,info)
|
|
|
|
swap_sync = iand(flag,psb_swap_sync_).ne.0
|
|
|
|
swap_sync = iand(flag,psb_swap_sync_).ne.0
|
|
|
|
swap_send = iand(flag,psb_swap_send_).ne.0
|
|
|
|
swap_send = iand(flag,psb_swap_send_).ne.0
|
|
|
|
swap_recv = iand(flag,psb_swap_recv_).ne.0
|
|
|
|
swap_recv = iand(flag,psb_swap_recv_).ne.0
|
|
|
|
h_idx => desc_a%halo_index
|
|
|
|
|
|
|
|
|
|
|
|
if(present(data)) then
|
|
|
|
|
|
|
|
if(data.eq.psb_comm_halo_) then
|
|
|
|
|
|
|
|
d_idx => desc_a%halo_index
|
|
|
|
|
|
|
|
else if(data.eq.psb_comm_ovr_) then
|
|
|
|
|
|
|
|
d_idx => desc_a%ovrlap_index
|
|
|
|
|
|
|
|
else
|
|
|
|
|
|
|
|
d_idx => desc_a%halo_index
|
|
|
|
|
|
|
|
end if
|
|
|
|
|
|
|
|
else
|
|
|
|
|
|
|
|
d_idx => desc_a%halo_index
|
|
|
|
|
|
|
|
end if
|
|
|
|
|
|
|
|
|
|
|
|
idxs = 0
|
|
|
|
idxs = 0
|
|
|
|
idxr = 0
|
|
|
|
idxr = 0
|
|
|
|
totxch = 0
|
|
|
|
totxch = 0
|
|
|
@ -104,11 +117,11 @@ subroutine psi_iswaptranm(flag,n,beta,y,desc_a,work,info)
|
|
|
|
rvhd(:) = mpi_request_null
|
|
|
|
rvhd(:) = mpi_request_null
|
|
|
|
|
|
|
|
|
|
|
|
! prepare info for communications
|
|
|
|
! prepare info for communications
|
|
|
|
proc_to_comm = h_idx(point_to_proc+psb_proc_id_)
|
|
|
|
proc_to_comm = d_idx(point_to_proc+psb_proc_id_)
|
|
|
|
do while (proc_to_comm.ne.-1)
|
|
|
|
do while (proc_to_comm.ne.-1)
|
|
|
|
if(proc_to_comm .ne. myrow) totxch = totxch+1
|
|
|
|
if(proc_to_comm .ne. myrow) totxch = totxch+1
|
|
|
|
nerv = h_idx(point_to_proc+psb_n_elem_recv_)
|
|
|
|
nerv = d_idx(point_to_proc+psb_n_elem_recv_)
|
|
|
|
nesd = h_idx(point_to_proc+nerv+psb_n_elem_send_)
|
|
|
|
nesd = d_idx(point_to_proc+nerv+psb_n_elem_send_)
|
|
|
|
|
|
|
|
|
|
|
|
prcid(proc_to_comm) = blacs_pnum(icontxt,proc_to_comm,mycol)
|
|
|
|
prcid(proc_to_comm) = blacs_pnum(icontxt,proc_to_comm,mycol)
|
|
|
|
ptp(proc_to_comm) = point_to_proc
|
|
|
|
ptp(proc_to_comm) = point_to_proc
|
|
|
@ -122,7 +135,7 @@ subroutine psi_iswaptranm(flag,n,beta,y,desc_a,work,info)
|
|
|
|
idxs = idxs+sdsz(proc_to_comm)
|
|
|
|
idxs = idxs+sdsz(proc_to_comm)
|
|
|
|
|
|
|
|
|
|
|
|
point_to_proc = point_to_proc+nerv+nesd+3
|
|
|
|
point_to_proc = point_to_proc+nerv+nesd+3
|
|
|
|
proc_to_comm = h_idx(point_to_proc+psb_proc_id_)
|
|
|
|
proc_to_comm = d_idx(point_to_proc+psb_proc_id_)
|
|
|
|
end do
|
|
|
|
end do
|
|
|
|
|
|
|
|
|
|
|
|
if((idxr+idxs).lt.size(work)) then
|
|
|
|
if((idxr+idxs).lt.size(work)) then
|
|
|
@ -141,24 +154,25 @@ subroutine psi_iswaptranm(flag,n,beta,y,desc_a,work,info)
|
|
|
|
|
|
|
|
|
|
|
|
! gather elements into sendbuffer for swapping
|
|
|
|
! gather elements into sendbuffer for swapping
|
|
|
|
point_to_proc = 1
|
|
|
|
point_to_proc = 1
|
|
|
|
proc_to_comm = h_idx(point_to_proc+psb_proc_id_)
|
|
|
|
proc_to_comm = d_idx(point_to_proc+psb_proc_id_)
|
|
|
|
do while (proc_to_comm .ne. -1)
|
|
|
|
do while (proc_to_comm .ne. -1)
|
|
|
|
nerv = h_idx(point_to_proc+psb_n_elem_recv_)
|
|
|
|
nerv = d_idx(point_to_proc+psb_n_elem_recv_)
|
|
|
|
nesd = h_idx(point_to_proc+nerv+psb_n_elem_send_)
|
|
|
|
nesd = d_idx(point_to_proc+nerv+psb_n_elem_send_)
|
|
|
|
|
|
|
|
|
|
|
|
idx_pt = point_to_proc+psb_elem_recv_
|
|
|
|
idx_pt = point_to_proc+psb_elem_recv_
|
|
|
|
rcv_pt = brvidx(proc_to_comm)
|
|
|
|
rcv_pt = brvidx(proc_to_comm)
|
|
|
|
call psi_gth(nerv,n,h_idx(idx_pt:idx_pt+nerv-1),&
|
|
|
|
|
|
|
|
|
|
|
|
call psi_gth(nerv,n,d_idx(idx_pt:idx_pt+nerv-1),&
|
|
|
|
& y,rcvbuf(rcv_pt:rcv_pt+nerv*n-1))
|
|
|
|
& y,rcvbuf(rcv_pt:rcv_pt+nerv*n-1))
|
|
|
|
|
|
|
|
|
|
|
|
point_to_proc = point_to_proc+nerv+nesd+3
|
|
|
|
point_to_proc = point_to_proc+nerv+nesd+3
|
|
|
|
proc_to_comm = h_idx(point_to_proc+psb_proc_id_)
|
|
|
|
proc_to_comm = d_idx(point_to_proc+psb_proc_id_)
|
|
|
|
end do
|
|
|
|
end do
|
|
|
|
|
|
|
|
|
|
|
|
! swap elements using mpi_alltoallv
|
|
|
|
! swap elements using mpi_alltoallv
|
|
|
|
call mpi_alltoallv(rcvbuf,rvsz,brvidx,&
|
|
|
|
call mpi_alltoallv(rcvbuf,rvsz,brvidx,&
|
|
|
|
& mpi_integer,sndbuf,sdsz,&
|
|
|
|
& mpi_double_precision,sndbuf,sdsz,&
|
|
|
|
& bsdidx,mpi_integer,icomm,iret)
|
|
|
|
& bsdidx,mpi_double_precision,icomm,iret)
|
|
|
|
if(iret.ne.mpi_success) then
|
|
|
|
if(iret.ne.mpi_success) then
|
|
|
|
int_err(1) = iret
|
|
|
|
int_err(1) = iret
|
|
|
|
info=400
|
|
|
|
info=400
|
|
|
@ -168,95 +182,95 @@ subroutine psi_iswaptranm(flag,n,beta,y,desc_a,work,info)
|
|
|
|
|
|
|
|
|
|
|
|
! scatter elements from receivebuffer after swapping
|
|
|
|
! scatter elements from receivebuffer after swapping
|
|
|
|
point_to_proc = 1
|
|
|
|
point_to_proc = 1
|
|
|
|
proc_to_comm = h_idx(point_to_proc+psb_proc_id_)
|
|
|
|
proc_to_comm = d_idx(point_to_proc+psb_proc_id_)
|
|
|
|
do while (proc_to_comm .ne. -1)
|
|
|
|
do while (proc_to_comm .ne. -1)
|
|
|
|
nerv = h_idx(point_to_proc+psb_n_elem_recv_)
|
|
|
|
nerv = d_idx(point_to_proc+psb_n_elem_recv_)
|
|
|
|
nesd = h_idx(point_to_proc+nerv+psb_n_elem_send_)
|
|
|
|
nesd = d_idx(point_to_proc+nerv+psb_n_elem_send_)
|
|
|
|
|
|
|
|
|
|
|
|
idx_pt = point_to_proc+nerv+psb_elem_send_
|
|
|
|
idx_pt = point_to_proc+nerv+psb_elem_send_
|
|
|
|
snd_pt = bsdidx(proc_to_comm)
|
|
|
|
snd_pt = bsdidx(proc_to_comm)
|
|
|
|
call psi_sct(nesd,n,h_idx(idx_pt:idx_pt+nesd-1),&
|
|
|
|
call psi_sct(nesd,n,d_idx(idx_pt:idx_pt+nesd-1),&
|
|
|
|
& sndbuf(snd_pt:snd_pt+n*nesd-1),beta,y)
|
|
|
|
& sndbuf(snd_pt:snd_pt+n*nesd-1),beta,y)
|
|
|
|
|
|
|
|
|
|
|
|
point_to_proc = point_to_proc+nerv+nesd+3
|
|
|
|
point_to_proc = point_to_proc+nerv+nesd+3
|
|
|
|
proc_to_comm = h_idx(point_to_proc+psb_proc_id_)
|
|
|
|
proc_to_comm = d_idx(point_to_proc+psb_proc_id_)
|
|
|
|
end do
|
|
|
|
end do
|
|
|
|
|
|
|
|
|
|
|
|
else if (swap_sync) then
|
|
|
|
else if (swap_sync) then
|
|
|
|
|
|
|
|
|
|
|
|
point_to_proc = 1
|
|
|
|
point_to_proc = 1
|
|
|
|
proc_to_comm = h_idx(point_to_proc+psb_proc_id_)
|
|
|
|
proc_to_comm = d_idx(point_to_proc+psb_proc_id_)
|
|
|
|
do while (proc_to_comm .ne. -1)
|
|
|
|
do while (proc_to_comm .ne. -1)
|
|
|
|
nerv = h_idx(point_to_proc+psb_n_elem_recv_)
|
|
|
|
nerv = d_idx(point_to_proc+psb_n_elem_recv_)
|
|
|
|
nesd = h_idx(point_to_proc+nerv+psb_n_elem_send_)
|
|
|
|
nesd = d_idx(point_to_proc+nerv+psb_n_elem_send_)
|
|
|
|
if (proc_to_comm .lt. myrow) then
|
|
|
|
if (proc_to_comm .lt. myrow) then
|
|
|
|
! First I send
|
|
|
|
! First I send
|
|
|
|
idx_pt = point_to_proc+psb_elem_recv_
|
|
|
|
idx_pt = point_to_proc+psb_elem_recv_
|
|
|
|
rcv_pt = brvidx(proc_to_comm)
|
|
|
|
rcv_pt = brvidx(proc_to_comm)
|
|
|
|
call psi_gth(nerv,n,h_idx(idx_pt:idx_pt+nerv-1),&
|
|
|
|
call psi_gth(nerv,n,d_idx(idx_pt:idx_pt+nerv-1),&
|
|
|
|
& y,rcvbuf(rcv_pt:rcv_pt+nerv*n-1))
|
|
|
|
& y,rcvbuf(rcv_pt:rcv_pt+nerv*n-1))
|
|
|
|
call igesd2d(icontxt,nerv,n,rcvbuf(rcv_pt),nerv,proc_to_comm,0)
|
|
|
|
call dgesd2d(icontxt,nerv,n,rcvbuf(rcv_pt),nerv,proc_to_comm,0)
|
|
|
|
! Then I receive
|
|
|
|
! Then I receive
|
|
|
|
snd_pt = brvidx(proc_to_comm)
|
|
|
|
snd_pt = brvidx(proc_to_comm)
|
|
|
|
call igerv2d(icontxt,nesd,n,sndbuf(snd_pt),nesd,proc_to_comm,0)
|
|
|
|
call dgerv2d(icontxt,nesd,n,sndbuf(snd_pt),nesd,proc_to_comm,0)
|
|
|
|
else if (proc_to_comm .gt. myrow) then
|
|
|
|
else if (proc_to_comm .gt. myrow) then
|
|
|
|
! First I receive
|
|
|
|
! First I receive
|
|
|
|
snd_pt = bsdidx(proc_to_comm)
|
|
|
|
snd_pt = bsdidx(proc_to_comm)
|
|
|
|
call igerv2d(icontxt,nesd,n,sndbuf(snd_pt),nesd,proc_to_comm,0)
|
|
|
|
call dgerv2d(icontxt,nesd,n,sndbuf(snd_pt),nesd,proc_to_comm,0)
|
|
|
|
! Then I send
|
|
|
|
! Then I send
|
|
|
|
idx_pt = point_to_proc+psb_elem_recv_
|
|
|
|
idx_pt = point_to_proc+psb_elem_recv_
|
|
|
|
rcv_pt = brvidx(proc_to_comm)
|
|
|
|
rcv_pt = brvidx(proc_to_comm)
|
|
|
|
call psi_gth(nerv,n,h_idx(idx_pt:idx_pt+nerv-1),&
|
|
|
|
call psi_gth(nerv,n,d_idx(idx_pt:idx_pt+nerv-1),&
|
|
|
|
& y,rcvbuf(rcv_pt:rcv_pt+nerv*n-1))
|
|
|
|
& y,rcvbuf(rcv_pt:rcv_pt+nerv*n-1))
|
|
|
|
call igesd2d(icontxt,nerv,n,rcvbuf(rcv_pt),nerv,proc_to_comm,0)
|
|
|
|
call dgesd2d(icontxt,nerv,n,rcvbuf(rcv_pt),nerv,proc_to_comm,0)
|
|
|
|
else if (proc_to_comm .eq. myrow) then
|
|
|
|
else if (proc_to_comm .eq. myrow) then
|
|
|
|
! I send to myself
|
|
|
|
! I send to myself
|
|
|
|
idx_pt = point_to_proc+psb_elem_recv_
|
|
|
|
idx_pt = point_to_proc+psb_elem_recv_
|
|
|
|
rcv_pt = bsdidx(proc_to_comm)
|
|
|
|
rcv_pt = bsdidx(proc_to_comm)
|
|
|
|
call psi_gth(nerv,n,h_idx(idx_pt:idx_pt+nerv-1),&
|
|
|
|
call psi_gth(nerv,n,d_idx(idx_pt:idx_pt+nerv-1),&
|
|
|
|
& y,rcvbuf(rcv_pt:rcv_pt+nerv*n-1))
|
|
|
|
& y,rcvbuf(rcv_pt:rcv_pt+nerv*n-1))
|
|
|
|
end if
|
|
|
|
end if
|
|
|
|
|
|
|
|
|
|
|
|
point_to_proc = point_to_proc+nerv+nesd+3
|
|
|
|
point_to_proc = point_to_proc+nerv+nesd+3
|
|
|
|
proc_to_comm = h_idx(point_to_proc+psb_proc_id_)
|
|
|
|
proc_to_comm = d_idx(point_to_proc+psb_proc_id_)
|
|
|
|
end do
|
|
|
|
end do
|
|
|
|
|
|
|
|
|
|
|
|
point_to_proc = 1
|
|
|
|
point_to_proc = 1
|
|
|
|
proc_to_comm = h_idx(point_to_proc+psb_proc_id_)
|
|
|
|
proc_to_comm = d_idx(point_to_proc+psb_proc_id_)
|
|
|
|
do while (proc_to_comm .ne. -1)
|
|
|
|
do while (proc_to_comm .ne. -1)
|
|
|
|
nerv = h_idx(point_to_proc+psb_n_elem_recv_)
|
|
|
|
nerv = d_idx(point_to_proc+psb_n_elem_recv_)
|
|
|
|
nesd = h_idx(point_to_proc+nerv+psb_n_elem_send_)
|
|
|
|
nesd = d_idx(point_to_proc+nerv+psb_n_elem_send_)
|
|
|
|
|
|
|
|
|
|
|
|
if(proc_to_comm.ne.myrow) then
|
|
|
|
if(proc_to_comm.ne.myrow) then
|
|
|
|
idx_pt = point_to_proc+nerv+psb_elem_send_
|
|
|
|
idx_pt = point_to_proc+nerv+psb_elem_send_
|
|
|
|
snd_pt = bsdidx(proc_to_comm)
|
|
|
|
snd_pt = bsdidx(proc_to_comm)
|
|
|
|
call psi_sct(nesd,n,h_idx(idx_pt:idx_pt+nesd-1),&
|
|
|
|
call psi_sct(nesd,n,d_idx(idx_pt:idx_pt+nesd-1),&
|
|
|
|
& sndbuf(snd_pt:snd_pt+n*nesd-1),beta,y)
|
|
|
|
& sndbuf(snd_pt:snd_pt+n*nesd-1),beta,y)
|
|
|
|
else
|
|
|
|
else
|
|
|
|
idx_pt = point_to_proc+nerv+psb_elem_send_
|
|
|
|
idx_pt = point_to_proc+nerv+psb_elem_send_
|
|
|
|
rcv_pt = brvidx(proc_to_comm)
|
|
|
|
rcv_pt = brvidx(proc_to_comm)
|
|
|
|
call psi_sct(nesd,n,h_idx(idx_pt:idx_pt+nesd-1),&
|
|
|
|
call psi_sct(nesd,n,d_idx(idx_pt:idx_pt+nesd-1),&
|
|
|
|
& rcvbuf(rcv_pt:rcv_pt+n*nerv-1),beta,y)
|
|
|
|
& rcvbuf(rcv_pt:rcv_pt+n*nerv-1),beta,y)
|
|
|
|
end if
|
|
|
|
end if
|
|
|
|
|
|
|
|
|
|
|
|
point_to_proc = point_to_proc+nerv+nesd+3
|
|
|
|
point_to_proc = point_to_proc+nerv+nesd+3
|
|
|
|
proc_to_comm = h_idx(point_to_proc+psb_proc_id_)
|
|
|
|
proc_to_comm = d_idx(point_to_proc+psb_proc_id_)
|
|
|
|
end do
|
|
|
|
end do
|
|
|
|
|
|
|
|
|
|
|
|
else if (swap_send .and. swap_recv) then
|
|
|
|
else if (swap_send .and. swap_recv) then
|
|
|
|
|
|
|
|
|
|
|
|
! First I post all the non blocking receives
|
|
|
|
! First I post all the non blocking receives
|
|
|
|
point_to_proc = 1
|
|
|
|
point_to_proc = 1
|
|
|
|
proc_to_comm = h_idx(point_to_proc+psb_proc_id_)
|
|
|
|
proc_to_comm = d_idx(point_to_proc+psb_proc_id_)
|
|
|
|
do while (proc_to_comm .ne. -1)
|
|
|
|
do while (proc_to_comm .ne. -1)
|
|
|
|
nerv = h_idx(point_to_proc+psb_n_elem_recv_)
|
|
|
|
nerv = d_idx(point_to_proc+psb_n_elem_recv_)
|
|
|
|
nesd = h_idx(point_to_proc+nerv+psb_n_elem_send_)
|
|
|
|
nesd = d_idx(point_to_proc+nerv+psb_n_elem_send_)
|
|
|
|
|
|
|
|
|
|
|
|
if(proc_to_comm.ne.myrow) then
|
|
|
|
if(proc_to_comm.ne.myrow) then
|
|
|
|
p2ptag = krecvid(icontxt,proc_to_comm,myrow)
|
|
|
|
p2ptag = krecvid(icontxt,proc_to_comm,myrow)
|
|
|
|
snd_pt = brvidx(proc_to_comm)
|
|
|
|
snd_pt = brvidx(proc_to_comm)
|
|
|
|
call mpi_irecv(sndbuf(rcv_pt),sdsz(proc_to_comm),&
|
|
|
|
call mpi_irecv(sndbuf(rcv_pt),sdsz(proc_to_comm),&
|
|
|
|
& mpi_integer,prcid(proc_to_comm),&
|
|
|
|
& mpi_double_precision,prcid(proc_to_comm),&
|
|
|
|
& p2ptag, icomm,rvhd(proc_to_comm),iret)
|
|
|
|
& p2ptag, icomm,rvhd(proc_to_comm),iret)
|
|
|
|
if(iret.ne.mpi_success) then
|
|
|
|
if(iret.ne.mpi_success) then
|
|
|
|
int_err(1) = iret
|
|
|
|
int_err(1) = iret
|
|
|
@ -267,25 +281,25 @@ subroutine psi_iswaptranm(flag,n,beta,y,desc_a,work,info)
|
|
|
|
end if
|
|
|
|
end if
|
|
|
|
|
|
|
|
|
|
|
|
point_to_proc = point_to_proc+nerv+nesd+3
|
|
|
|
point_to_proc = point_to_proc+nerv+nesd+3
|
|
|
|
proc_to_comm = h_idx(point_to_proc+psb_proc_id_)
|
|
|
|
proc_to_comm = d_idx(point_to_proc+psb_proc_id_)
|
|
|
|
end do
|
|
|
|
end do
|
|
|
|
|
|
|
|
|
|
|
|
! Then I post all the blocking sends
|
|
|
|
! Then I post all the blocking sends
|
|
|
|
point_to_proc = 1
|
|
|
|
point_to_proc = 1
|
|
|
|
proc_to_comm = h_idx(point_to_proc+psb_proc_id_)
|
|
|
|
proc_to_comm = d_idx(point_to_proc+psb_proc_id_)
|
|
|
|
do while (proc_to_comm .ne. -1)
|
|
|
|
do while (proc_to_comm .ne. -1)
|
|
|
|
nerv = h_idx(point_to_proc+psb_n_elem_recv_)
|
|
|
|
nerv = d_idx(point_to_proc+psb_n_elem_recv_)
|
|
|
|
nesd = h_idx(point_to_proc+nerv+psb_n_elem_send_)
|
|
|
|
nesd = d_idx(point_to_proc+nerv+psb_n_elem_send_)
|
|
|
|
|
|
|
|
|
|
|
|
idx_pt = point_to_proc+psb_elem_recv_
|
|
|
|
idx_pt = point_to_proc+psb_elem_recv_
|
|
|
|
rcv_pt = brvidx(proc_to_comm)
|
|
|
|
rcv_pt = brvidx(proc_to_comm)
|
|
|
|
call psi_gth(nerv,n,h_idx(idx_pt:idx_pt+nerv-1),&
|
|
|
|
call psi_gth(nerv,n,d_idx(idx_pt:idx_pt+nerv-1),&
|
|
|
|
& y,rcvbuf(rcv_pt:rcv_pt+nerv*n-1))
|
|
|
|
& y,rcvbuf(rcv_pt:rcv_pt+nerv*n-1))
|
|
|
|
|
|
|
|
|
|
|
|
if(proc_to_comm .ne. myrow) then
|
|
|
|
if(proc_to_comm .ne. myrow) then
|
|
|
|
p2ptag=ksendid(icontxt,proc_to_comm,myrow)
|
|
|
|
p2ptag=ksendid(icontxt,proc_to_comm,myrow)
|
|
|
|
call mpi_send(rcvbuf(rcv_pt),rvsz(proc_to_comm),&
|
|
|
|
call mpi_send(rcvbuf(rcv_pt),rvsz(proc_to_comm),&
|
|
|
|
& mpi_integer,prcid(proc_to_comm),&
|
|
|
|
& mpi_double_precision,prcid(proc_to_comm),&
|
|
|
|
& p2ptag,icomm,iret)
|
|
|
|
& p2ptag,icomm,iret)
|
|
|
|
if(iret.ne.mpi_success) then
|
|
|
|
if(iret.ne.mpi_success) then
|
|
|
|
int_err(1) = iret
|
|
|
|
int_err(1) = iret
|
|
|
@ -295,95 +309,130 @@ subroutine psi_iswaptranm(flag,n,beta,y,desc_a,work,info)
|
|
|
|
end if
|
|
|
|
end if
|
|
|
|
end if
|
|
|
|
end if
|
|
|
|
point_to_proc = point_to_proc+nerv+nesd+3
|
|
|
|
point_to_proc = point_to_proc+nerv+nesd+3
|
|
|
|
proc_to_comm = h_idx(point_to_proc+psb_proc_id_)
|
|
|
|
proc_to_comm = d_idx(point_to_proc+psb_proc_id_)
|
|
|
|
end do
|
|
|
|
end do
|
|
|
|
|
|
|
|
|
|
|
|
do i=1, totxch
|
|
|
|
if(.false.) then
|
|
|
|
call mpi_waitany(nprow,rvhd,ixrec,p2pstat,iret)
|
|
|
|
do i=1, totxch
|
|
|
|
if(iret.ne.mpi_success) then
|
|
|
|
call mpi_waitany(nprow,rvhd,ixrec,p2pstat,iret)
|
|
|
|
int_err(1) = iret
|
|
|
|
if(iret.ne.mpi_success) then
|
|
|
|
info=400
|
|
|
|
int_err(1) = iret
|
|
|
|
call psb_errpush(info,name,i_err=int_err)
|
|
|
|
info=400
|
|
|
|
goto 9999
|
|
|
|
call psb_errpush(info,name,i_err=int_err)
|
|
|
|
end if
|
|
|
|
goto 9999
|
|
|
|
|
|
|
|
end if
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if (ixrec .ne. mpi_undefined) then
|
|
|
|
|
|
|
|
ixrec=ixrec-1 ! mpi_waitany returns an 1 to nprow index
|
|
|
|
|
|
|
|
point_to_proc = ptp(ixrec)
|
|
|
|
|
|
|
|
proc_to_comm = d_idx(point_to_proc+psb_proc_id_)
|
|
|
|
|
|
|
|
nerv = d_idx(point_to_proc+psb_n_elem_recv_)
|
|
|
|
|
|
|
|
nesd = d_idx(point_to_proc+nerv+psb_n_elem_send_)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
idx_pt = point_to_proc+nerv+psb_elem_send_
|
|
|
|
|
|
|
|
snd_pt = bsdidx(proc_to_comm)
|
|
|
|
|
|
|
|
call psi_sct(nesd,n,d_idx(idx_pt:idx_pt+nesd-1),&
|
|
|
|
|
|
|
|
& sndbuf(snd_pt:snd_pt+n*nesd-1),beta,y)
|
|
|
|
|
|
|
|
else
|
|
|
|
|
|
|
|
int_err(1) = ixrec
|
|
|
|
|
|
|
|
info=400
|
|
|
|
|
|
|
|
call psb_errpush(info,name,i_err=int_err)
|
|
|
|
|
|
|
|
goto 9999
|
|
|
|
|
|
|
|
end if
|
|
|
|
|
|
|
|
end do
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
point_to_proc = 1
|
|
|
|
|
|
|
|
proc_to_comm = d_idx(point_to_proc+psb_proc_id_)
|
|
|
|
|
|
|
|
do while (proc_to_comm .ne. -1)
|
|
|
|
|
|
|
|
nerv = d_idx(point_to_proc+psb_n_elem_recv_)
|
|
|
|
|
|
|
|
nesd = d_idx(point_to_proc+nerv+psb_n_elem_send_)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if(proc_to_comm .eq. myrow) then
|
|
|
|
|
|
|
|
idx_pt = point_to_proc+nerv+psb_elem_send_
|
|
|
|
|
|
|
|
rcv_pt = brvidx(proc_to_comm)
|
|
|
|
|
|
|
|
call psi_sct(nesd,n,d_idx(idx_pt:idx_pt+nesd-1),&
|
|
|
|
|
|
|
|
& rcvbuf(rcv_pt:rcv_pt+n*nerv-1),beta,y)
|
|
|
|
|
|
|
|
end if
|
|
|
|
|
|
|
|
|
|
|
|
if (ixrec .ne. mpi_undefined) then
|
|
|
|
point_to_proc = point_to_proc+nerv+nesd+3
|
|
|
|
ixrec=ixrec-1 ! mpi_waitany returns an 1 to nprow index
|
|
|
|
proc_to_comm = d_idx(point_to_proc+psb_proc_id_)
|
|
|
|
point_to_proc = ptp(ixrec)
|
|
|
|
end do
|
|
|
|
proc_to_comm = h_idx(point_to_proc+psb_proc_id_)
|
|
|
|
else
|
|
|
|
nerv = h_idx(point_to_proc+psb_n_elem_recv_)
|
|
|
|
|
|
|
|
nesd = h_idx(point_to_proc+nerv+psb_n_elem_send_)
|
|
|
|
point_to_proc = 1
|
|
|
|
|
|
|
|
proc_to_comm = d_idx(point_to_proc+psb_proc_id_)
|
|
|
|
|
|
|
|
do while (proc_to_comm .ne. -1)
|
|
|
|
|
|
|
|
nerv = d_idx(point_to_proc+psb_n_elem_recv_)
|
|
|
|
|
|
|
|
nesd = d_idx(point_to_proc+nerv+psb_n_elem_send_)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if(proc_to_comm.ne.myrow) then
|
|
|
|
|
|
|
|
call mpi_wait(rvhd(proc_to_comm),p2pstat,iret)
|
|
|
|
|
|
|
|
if(iret.ne.mpi_success) then
|
|
|
|
|
|
|
|
int_err(1) = iret
|
|
|
|
|
|
|
|
info=400
|
|
|
|
|
|
|
|
call psb_errpush(info,name,i_err=int_err)
|
|
|
|
|
|
|
|
goto 9999
|
|
|
|
|
|
|
|
end if
|
|
|
|
|
|
|
|
idx_pt = point_to_proc+nerv+psb_elem_send_
|
|
|
|
|
|
|
|
snd_pt = bsdidx(proc_to_comm)
|
|
|
|
|
|
|
|
call psi_sct(nesd,n,d_idx(idx_pt:idx_pt+nesd-1),&
|
|
|
|
|
|
|
|
& sndbuf(snd_pt:snd_pt+n*nesd-1),beta,y)
|
|
|
|
|
|
|
|
else
|
|
|
|
|
|
|
|
idx_pt = point_to_proc+nerv+psb_elem_send_
|
|
|
|
|
|
|
|
rcv_pt = brvidx(proc_to_comm)
|
|
|
|
|
|
|
|
call psi_sct(nesd,n,d_idx(idx_pt:idx_pt+nesd-1),&
|
|
|
|
|
|
|
|
& rcvbuf(rcv_pt:rcv_pt+n*nerv-1),beta,y)
|
|
|
|
|
|
|
|
|
|
|
|
idx_pt = point_to_proc+nerv+psb_elem_send_
|
|
|
|
end if
|
|
|
|
snd_pt = bsdidx(proc_to_comm)
|
|
|
|
|
|
|
|
call psi_sct(nesd,n,h_idx(idx_pt:idx_pt+nesd-1),&
|
|
|
|
|
|
|
|
& sndbuf(snd_pt:snd_pt+n*nesd-1),beta,y)
|
|
|
|
|
|
|
|
else
|
|
|
|
|
|
|
|
int_err(1) = ixrec
|
|
|
|
|
|
|
|
info=400
|
|
|
|
|
|
|
|
call psb_errpush(info,name,i_err=int_err)
|
|
|
|
|
|
|
|
goto 9999
|
|
|
|
|
|
|
|
end if
|
|
|
|
|
|
|
|
end do
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
point_to_proc = 1
|
|
|
|
point_to_proc = point_to_proc+nerv+nesd+3
|
|
|
|
proc_to_comm = h_idx(point_to_proc+psb_proc_id_)
|
|
|
|
proc_to_comm = d_idx(point_to_proc+psb_proc_id_)
|
|
|
|
do while (proc_to_comm .ne. -1)
|
|
|
|
end do
|
|
|
|
nerv = h_idx(point_to_proc+psb_n_elem_recv_)
|
|
|
|
|
|
|
|
nesd = h_idx(point_to_proc+nerv+psb_n_elem_send_)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if(proc_to_comm .eq. myrow) then
|
|
|
|
end if
|
|
|
|
idx_pt = point_to_proc+nerv+psb_elem_send_
|
|
|
|
|
|
|
|
rcv_pt = brvidx(proc_to_comm)
|
|
|
|
|
|
|
|
call psi_sct(nesd,n,h_idx(idx_pt:idx_pt+nesd-1),&
|
|
|
|
|
|
|
|
& rcvbuf(rcv_pt:rcv_pt+n*nerv-1),beta,y)
|
|
|
|
|
|
|
|
end if
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
point_to_proc = point_to_proc+nerv+nesd+3
|
|
|
|
|
|
|
|
proc_to_comm = h_idx(point_to_proc+psb_proc_id_)
|
|
|
|
|
|
|
|
end do
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
else if (swap_send) then
|
|
|
|
else if (swap_send) then
|
|
|
|
|
|
|
|
|
|
|
|
point_to_proc = 1
|
|
|
|
point_to_proc = 1
|
|
|
|
proc_to_comm = h_idx(point_to_proc+psb_proc_id_)
|
|
|
|
proc_to_comm = d_idx(point_to_proc+psb_proc_id_)
|
|
|
|
do while (proc_to_comm .ne. -1)
|
|
|
|
do while (proc_to_comm .ne. -1)
|
|
|
|
nerv = h_idx(point_to_proc+psb_n_elem_recv_)
|
|
|
|
nerv = d_idx(point_to_proc+psb_n_elem_recv_)
|
|
|
|
nesd = h_idx(point_to_proc+nerv+psb_n_elem_send_)
|
|
|
|
nesd = d_idx(point_to_proc+nerv+psb_n_elem_send_)
|
|
|
|
|
|
|
|
|
|
|
|
idx_pt = point_to_proc+psb_elem_recv_
|
|
|
|
idx_pt = point_to_proc+psb_elem_recv_
|
|
|
|
rcv_pt = brvidx(proc_to_comm)
|
|
|
|
rcv_pt = brvidx(proc_to_comm)
|
|
|
|
call psi_gth(nerv,n,h_idx(idx_pt:idx_pt+nerv-1),&
|
|
|
|
call psi_gth(nerv,n,d_idx(idx_pt:idx_pt+nerv-1),&
|
|
|
|
& y,rcvbuf(rcv_pt:rcv_pt+nerv*n-1))
|
|
|
|
& y,rcvbuf(rcv_pt:rcv_pt+nerv*n-1))
|
|
|
|
call igesd2d(icontxt,nerv,n,rcvbuf(rcv_pt),nerv,proc_to_comm,0)
|
|
|
|
call dgesd2d(icontxt,nerv,n,rcvbuf(rcv_pt),nerv,proc_to_comm,0)
|
|
|
|
|
|
|
|
|
|
|
|
point_to_proc = point_to_proc+nerv+nesd+3
|
|
|
|
point_to_proc = point_to_proc+nerv+nesd+3
|
|
|
|
proc_to_comm = h_idx(point_to_proc+psb_proc_id_)
|
|
|
|
proc_to_comm = d_idx(point_to_proc+psb_proc_id_)
|
|
|
|
end do
|
|
|
|
end do
|
|
|
|
|
|
|
|
|
|
|
|
else if (swap_recv) then
|
|
|
|
else if (swap_recv) then
|
|
|
|
|
|
|
|
|
|
|
|
point_to_proc = 1
|
|
|
|
point_to_proc = 1
|
|
|
|
proc_to_comm = h_idx(point_to_proc+psb_proc_id_)
|
|
|
|
proc_to_comm = d_idx(point_to_proc+psb_proc_id_)
|
|
|
|
do while (proc_to_comm .ne. -1)
|
|
|
|
do while (proc_to_comm .ne. -1)
|
|
|
|
nerv = h_idx(point_to_proc+psb_n_elem_recv_)
|
|
|
|
nerv = d_idx(point_to_proc+psb_n_elem_recv_)
|
|
|
|
nesd = h_idx(point_to_proc+nerv+psb_n_elem_send_)
|
|
|
|
nesd = d_idx(point_to_proc+nerv+psb_n_elem_send_)
|
|
|
|
|
|
|
|
|
|
|
|
if(proc_to_comm.ne.myrow) then
|
|
|
|
if(proc_to_comm.ne.myrow) then
|
|
|
|
snd_pt = bsdidx(proc_to_comm)
|
|
|
|
snd_pt = bsdidx(proc_to_comm)
|
|
|
|
call igerv2d(icontxt,nesd,n,sndbuf(snd_pt),nesd,proc_to_comm,0)
|
|
|
|
call dgerv2d(icontxt,nesd,n,sndbuf(snd_pt),nesd,proc_to_comm,0)
|
|
|
|
idx_pt = point_to_proc+nerv+psb_elem_send_
|
|
|
|
idx_pt = point_to_proc+nerv+psb_elem_send_
|
|
|
|
call psi_sct(nesd,n,h_idx(idx_pt:idx_pt+nesd-1),&
|
|
|
|
call psi_sct(nesd,n,d_idx(idx_pt:idx_pt+nesd-1),&
|
|
|
|
& sndbuf(snd_pt:snd_pt+n*nesd-1),beta,y)
|
|
|
|
& sndbuf(snd_pt:snd_pt+n*nesd-1),beta,y)
|
|
|
|
else
|
|
|
|
else
|
|
|
|
idx_pt = point_to_proc+nerv+psb_elem_send_
|
|
|
|
idx_pt = point_to_proc+nerv+psb_elem_send_
|
|
|
|
rcv_pt = brvidx(proc_to_comm)
|
|
|
|
rcv_pt = brvidx(proc_to_comm)
|
|
|
|
call psi_sct(nesd,n,h_idx(idx_pt:idx_pt+nesd-1),&
|
|
|
|
call psi_sct(nesd,n,d_idx(idx_pt:idx_pt+nesd-1),&
|
|
|
|
& rcvbuf(rcv_pt:rcv_pt+n*nerv-1),beta,y)
|
|
|
|
& rcvbuf(rcv_pt:rcv_pt+n*nerv-1),beta,y)
|
|
|
|
end if
|
|
|
|
end if
|
|
|
|
|
|
|
|
|
|
|
|
point_to_proc = point_to_proc+nerv+nesd+3
|
|
|
|
point_to_proc = point_to_proc+nerv+nesd+3
|
|
|
|
proc_to_comm = h_idx(point_to_proc+psb_proc_id_)
|
|
|
|
proc_to_comm = d_idx(point_to_proc+psb_proc_id_)
|
|
|
|
end do
|
|
|
|
end do
|
|
|
|
|
|
|
|
|
|
|
|
end if
|
|
|
|
end if
|
|
|
@ -398,7 +447,7 @@ subroutine psi_iswaptranm(flag,n,beta,y,desc_a,work,info)
|
|
|
|
return
|
|
|
|
return
|
|
|
|
end if
|
|
|
|
end if
|
|
|
|
return
|
|
|
|
return
|
|
|
|
end subroutine psi_iswaptranm
|
|
|
|
end subroutine psi_dswaptranm
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@ -406,33 +455,34 @@ end subroutine psi_iswaptranm
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
subroutine psi_iswaptranv(flag,beta,y,desc_a,work,info)
|
|
|
|
subroutine psi_dswaptranv(flag,beta,y,desc_a,work,info,data)
|
|
|
|
|
|
|
|
|
|
|
|
use psb_error_mod
|
|
|
|
use psb_error_mod
|
|
|
|
use psb_descriptor_type
|
|
|
|
use psb_descriptor_type
|
|
|
|
|
|
|
|
use mpi
|
|
|
|
implicit none
|
|
|
|
implicit none
|
|
|
|
include 'mpif.h'
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
integer, intent(in) :: flag
|
|
|
|
integer, intent(in) :: flag
|
|
|
|
integer, intent(out) :: info
|
|
|
|
integer, intent(out) :: info
|
|
|
|
integer :: y(:), beta
|
|
|
|
real(kind(1.d0)) :: y(:), beta
|
|
|
|
integer, target :: work(:)
|
|
|
|
real(kind(1.d0)), target :: work(:)
|
|
|
|
type(psb_desc_type) :: desc_a
|
|
|
|
type(psb_desc_type) :: desc_a
|
|
|
|
|
|
|
|
integer, optional :: data
|
|
|
|
|
|
|
|
|
|
|
|
! locals
|
|
|
|
! locals
|
|
|
|
integer :: icontxt, nprow, npcol, myrow,&
|
|
|
|
integer :: icontxt, nprow, npcol, myrow,&
|
|
|
|
& mycol, point_to_proc, nesd, nerv,&
|
|
|
|
& mycol, point_to_proc, nesd, nerv,&
|
|
|
|
& proc_to_comm, p2ptag, icomm, p2pstat,&
|
|
|
|
& proc_to_comm, p2ptag, icomm, p2pstat(mpi_status_size),&
|
|
|
|
& idxs, idxr, iret, errlen, ifcomm, rank,&
|
|
|
|
& idxs, idxr, iret, errlen, ifcomm, rank,&
|
|
|
|
& err_act, totxch, ixrec, i, lw, idx_pt,&
|
|
|
|
& err_act, totxch, ixrec, i, lw, idx_pt,&
|
|
|
|
& snd_pt, rcv_pt, n
|
|
|
|
& snd_pt, rcv_pt, n
|
|
|
|
|
|
|
|
|
|
|
|
integer, pointer, dimension(:) :: bsdidx, brvidx,&
|
|
|
|
integer, pointer, dimension(:) :: bsdidx, brvidx,&
|
|
|
|
& sdsz, rvsz, prcid, ptp, rvhd, h_idx
|
|
|
|
& sdsz, rvsz, prcid, ptp, rvhd, d_idx
|
|
|
|
integer :: int_err(5)
|
|
|
|
integer :: int_err(5)
|
|
|
|
integer :: blacs_pnum, krecvid, ksendid
|
|
|
|
integer :: blacs_pnum, krecvid, ksendid
|
|
|
|
logical :: swap_mpi, swap_sync, swap_send, swap_recv
|
|
|
|
logical :: swap_mpi, swap_sync, swap_send, swap_recv
|
|
|
|
integer, pointer, dimension(:) :: sndbuf, rcvbuf
|
|
|
|
real(kind(1.d0)), pointer, dimension(:) :: sndbuf, rcvbuf
|
|
|
|
character(len=20) :: name, ch_err
|
|
|
|
character(len=20) :: name, ch_err
|
|
|
|
|
|
|
|
|
|
|
|
interface psi_gth
|
|
|
|
interface psi_gth
|
|
|
@ -504,7 +554,19 @@ subroutine psi_iswaptranv(flag,beta,y,desc_a,work,info)
|
|
|
|
swap_sync = iand(flag,psb_swap_sync_).ne.0
|
|
|
|
swap_sync = iand(flag,psb_swap_sync_).ne.0
|
|
|
|
swap_send = iand(flag,psb_swap_send_).ne.0
|
|
|
|
swap_send = iand(flag,psb_swap_send_).ne.0
|
|
|
|
swap_recv = iand(flag,psb_swap_recv_).ne.0
|
|
|
|
swap_recv = iand(flag,psb_swap_recv_).ne.0
|
|
|
|
h_idx => desc_a%halo_index
|
|
|
|
|
|
|
|
|
|
|
|
if(present(data)) then
|
|
|
|
|
|
|
|
if(data.eq.psb_comm_halo_) then
|
|
|
|
|
|
|
|
d_idx => desc_a%halo_index
|
|
|
|
|
|
|
|
else if(data.eq.psb_comm_ovr_) then
|
|
|
|
|
|
|
|
d_idx => desc_a%ovrlap_index
|
|
|
|
|
|
|
|
else
|
|
|
|
|
|
|
|
d_idx => desc_a%halo_index
|
|
|
|
|
|
|
|
end if
|
|
|
|
|
|
|
|
else
|
|
|
|
|
|
|
|
d_idx => desc_a%halo_index
|
|
|
|
|
|
|
|
end if
|
|
|
|
|
|
|
|
|
|
|
|
idxs = 0
|
|
|
|
idxs = 0
|
|
|
|
idxr = 0
|
|
|
|
idxr = 0
|
|
|
|
totxch = 0
|
|
|
|
totxch = 0
|
|
|
@ -513,11 +575,11 @@ subroutine psi_iswaptranv(flag,beta,y,desc_a,work,info)
|
|
|
|
n=1
|
|
|
|
n=1
|
|
|
|
|
|
|
|
|
|
|
|
! prepare info for communications
|
|
|
|
! prepare info for communications
|
|
|
|
proc_to_comm = h_idx(point_to_proc+psb_proc_id_)
|
|
|
|
proc_to_comm = d_idx(point_to_proc+psb_proc_id_)
|
|
|
|
do while (proc_to_comm.ne.-1)
|
|
|
|
do while (proc_to_comm.ne.-1)
|
|
|
|
if(proc_to_comm .ne. myrow) totxch = totxch+1
|
|
|
|
if(proc_to_comm .ne. myrow) totxch = totxch+1
|
|
|
|
nerv = h_idx(point_to_proc+psb_n_elem_recv_)
|
|
|
|
nerv = d_idx(point_to_proc+psb_n_elem_recv_)
|
|
|
|
nesd = h_idx(point_to_proc+nerv+psb_n_elem_send_)
|
|
|
|
nesd = d_idx(point_to_proc+nerv+psb_n_elem_send_)
|
|
|
|
|
|
|
|
|
|
|
|
prcid(proc_to_comm) = blacs_pnum(icontxt,proc_to_comm,mycol)
|
|
|
|
prcid(proc_to_comm) = blacs_pnum(icontxt,proc_to_comm,mycol)
|
|
|
|
ptp(proc_to_comm) = point_to_proc
|
|
|
|
ptp(proc_to_comm) = point_to_proc
|
|
|
@ -531,7 +593,7 @@ subroutine psi_iswaptranv(flag,beta,y,desc_a,work,info)
|
|
|
|
idxs = idxs+sdsz(proc_to_comm)
|
|
|
|
idxs = idxs+sdsz(proc_to_comm)
|
|
|
|
|
|
|
|
|
|
|
|
point_to_proc = point_to_proc+nerv+nesd+3
|
|
|
|
point_to_proc = point_to_proc+nerv+nesd+3
|
|
|
|
proc_to_comm = h_idx(point_to_proc+psb_proc_id_)
|
|
|
|
proc_to_comm = d_idx(point_to_proc+psb_proc_id_)
|
|
|
|
end do
|
|
|
|
end do
|
|
|
|
|
|
|
|
|
|
|
|
if((idxr+idxs).lt.size(work)) then
|
|
|
|
if((idxr+idxs).lt.size(work)) then
|
|
|
@ -550,24 +612,24 @@ subroutine psi_iswaptranv(flag,beta,y,desc_a,work,info)
|
|
|
|
|
|
|
|
|
|
|
|
! gather elements into sendbuffer for swapping
|
|
|
|
! gather elements into sendbuffer for swapping
|
|
|
|
point_to_proc = 1
|
|
|
|
point_to_proc = 1
|
|
|
|
proc_to_comm = h_idx(point_to_proc+psb_proc_id_)
|
|
|
|
proc_to_comm = d_idx(point_to_proc+psb_proc_id_)
|
|
|
|
do while (proc_to_comm .ne. -1)
|
|
|
|
do while (proc_to_comm .ne. -1)
|
|
|
|
nerv = h_idx(point_to_proc+psb_n_elem_recv_)
|
|
|
|
nerv = d_idx(point_to_proc+psb_n_elem_recv_)
|
|
|
|
nesd = h_idx(point_to_proc+nerv+psb_n_elem_send_)
|
|
|
|
nesd = d_idx(point_to_proc+nerv+psb_n_elem_send_)
|
|
|
|
|
|
|
|
|
|
|
|
idx_pt = point_to_proc+psb_elem_recv_
|
|
|
|
idx_pt = point_to_proc+psb_elem_recv_
|
|
|
|
rcv_pt = brvidx(proc_to_comm)
|
|
|
|
rcv_pt = brvidx(proc_to_comm)
|
|
|
|
call psi_gth(nerv,h_idx(idx_pt:idx_pt+nerv-1),&
|
|
|
|
call psi_gth(nerv,d_idx(idx_pt:idx_pt+nerv-1),&
|
|
|
|
& y,rcvbuf(rcv_pt:rcv_pt+nerv-1))
|
|
|
|
& y,rcvbuf(rcv_pt:rcv_pt+nerv-1))
|
|
|
|
|
|
|
|
|
|
|
|
point_to_proc = point_to_proc+nerv+nesd+3
|
|
|
|
point_to_proc = point_to_proc+nerv+nesd+3
|
|
|
|
proc_to_comm = h_idx(point_to_proc+psb_proc_id_)
|
|
|
|
proc_to_comm = d_idx(point_to_proc+psb_proc_id_)
|
|
|
|
end do
|
|
|
|
end do
|
|
|
|
|
|
|
|
|
|
|
|
! swap elements using mpi_alltoallv
|
|
|
|
! swap elements using mpi_alltoallv
|
|
|
|
call mpi_alltoallv(rcvbuf,rvsz,brvidx,&
|
|
|
|
call mpi_alltoallv(rcvbuf,rvsz,brvidx,&
|
|
|
|
& mpi_integer,sndbuf,sdsz,&
|
|
|
|
& mpi_double_precision,sndbuf,sdsz,&
|
|
|
|
& bsdidx,mpi_integer,icomm,iret)
|
|
|
|
& bsdidx,mpi_double_precision,icomm,iret)
|
|
|
|
if(iret.ne.mpi_success) then
|
|
|
|
if(iret.ne.mpi_success) then
|
|
|
|
int_err(1) = iret
|
|
|
|
int_err(1) = iret
|
|
|
|
info=400
|
|
|
|
info=400
|
|
|
@ -577,95 +639,95 @@ subroutine psi_iswaptranv(flag,beta,y,desc_a,work,info)
|
|
|
|
|
|
|
|
|
|
|
|
! scatter elements from receivebuffer after swapping
|
|
|
|
! scatter elements from receivebuffer after swapping
|
|
|
|
point_to_proc = 1
|
|
|
|
point_to_proc = 1
|
|
|
|
proc_to_comm = h_idx(point_to_proc+psb_proc_id_)
|
|
|
|
proc_to_comm = d_idx(point_to_proc+psb_proc_id_)
|
|
|
|
do while (proc_to_comm .ne. -1)
|
|
|
|
do while (proc_to_comm .ne. -1)
|
|
|
|
nerv = h_idx(point_to_proc+psb_n_elem_recv_)
|
|
|
|
nerv = d_idx(point_to_proc+psb_n_elem_recv_)
|
|
|
|
nesd = h_idx(point_to_proc+nerv+psb_n_elem_send_)
|
|
|
|
nesd = d_idx(point_to_proc+nerv+psb_n_elem_send_)
|
|
|
|
|
|
|
|
|
|
|
|
idx_pt = point_to_proc+nerv+psb_elem_send_
|
|
|
|
idx_pt = point_to_proc+nerv+psb_elem_send_
|
|
|
|
snd_pt = bsdidx(proc_to_comm)
|
|
|
|
snd_pt = bsdidx(proc_to_comm)
|
|
|
|
call psi_sct(nesd,h_idx(idx_pt:idx_pt+nesd-1),&
|
|
|
|
call psi_sct(nesd,d_idx(idx_pt:idx_pt+nesd-1),&
|
|
|
|
& sndbuf(snd_pt:snd_pt+nesd-1),beta,y)
|
|
|
|
& sndbuf(snd_pt:snd_pt+nesd-1),beta,y)
|
|
|
|
|
|
|
|
|
|
|
|
point_to_proc = point_to_proc+nerv+nesd+3
|
|
|
|
point_to_proc = point_to_proc+nerv+nesd+3
|
|
|
|
proc_to_comm = h_idx(point_to_proc+psb_proc_id_)
|
|
|
|
proc_to_comm = d_idx(point_to_proc+psb_proc_id_)
|
|
|
|
end do
|
|
|
|
end do
|
|
|
|
|
|
|
|
|
|
|
|
else if (swap_sync) then
|
|
|
|
else if (swap_sync) then
|
|
|
|
|
|
|
|
|
|
|
|
point_to_proc = 1
|
|
|
|
point_to_proc = 1
|
|
|
|
proc_to_comm = h_idx(point_to_proc+psb_proc_id_)
|
|
|
|
proc_to_comm = d_idx(point_to_proc+psb_proc_id_)
|
|
|
|
do while (proc_to_comm .ne. -1)
|
|
|
|
do while (proc_to_comm .ne. -1)
|
|
|
|
nerv = h_idx(point_to_proc+psb_n_elem_recv_)
|
|
|
|
nerv = d_idx(point_to_proc+psb_n_elem_recv_)
|
|
|
|
nesd = h_idx(point_to_proc+nerv+psb_n_elem_send_)
|
|
|
|
nesd = d_idx(point_to_proc+nerv+psb_n_elem_send_)
|
|
|
|
if (proc_to_comm .lt. myrow) then
|
|
|
|
if (proc_to_comm .lt. myrow) then
|
|
|
|
! First I send
|
|
|
|
! First I send
|
|
|
|
idx_pt = point_to_proc+psb_elem_recv_
|
|
|
|
idx_pt = point_to_proc+psb_elem_recv_
|
|
|
|
rcv_pt = brvidx(proc_to_comm)
|
|
|
|
rcv_pt = brvidx(proc_to_comm)
|
|
|
|
call psi_gth(nerv,h_idx(idx_pt:idx_pt+nerv-1),&
|
|
|
|
call psi_gth(nerv,d_idx(idx_pt:idx_pt+nerv-1),&
|
|
|
|
& y,rcvbuf(rcv_pt:rcv_pt+nerv-1))
|
|
|
|
& y,rcvbuf(rcv_pt:rcv_pt+nerv-1))
|
|
|
|
call igesd2d(icontxt,nerv,1,rcvbuf(rcv_pt),nerv,proc_to_comm,0)
|
|
|
|
call dgesd2d(icontxt,nerv,1,rcvbuf(rcv_pt),nerv,proc_to_comm,0)
|
|
|
|
! Then I receive
|
|
|
|
! Then I receive
|
|
|
|
snd_pt = brvidx(proc_to_comm)
|
|
|
|
snd_pt = brvidx(proc_to_comm)
|
|
|
|
call igerv2d(icontxt,nesd,1,sndbuf(snd_pt),nesd,proc_to_comm,0)
|
|
|
|
call dgerv2d(icontxt,nesd,1,sndbuf(snd_pt),nesd,proc_to_comm,0)
|
|
|
|
else if (proc_to_comm .gt. myrow) then
|
|
|
|
else if (proc_to_comm .gt. myrow) then
|
|
|
|
! First I receive
|
|
|
|
! First I receive
|
|
|
|
snd_pt = bsdidx(proc_to_comm)
|
|
|
|
snd_pt = bsdidx(proc_to_comm)
|
|
|
|
call igerv2d(icontxt,nesd,1,sndbuf(snd_pt),nesd,proc_to_comm,0)
|
|
|
|
call dgerv2d(icontxt,nesd,1,sndbuf(snd_pt),nesd,proc_to_comm,0)
|
|
|
|
! Then I send
|
|
|
|
! Then I send
|
|
|
|
idx_pt = point_to_proc+psb_elem_recv_
|
|
|
|
idx_pt = point_to_proc+psb_elem_recv_
|
|
|
|
rcv_pt = brvidx(proc_to_comm)
|
|
|
|
rcv_pt = brvidx(proc_to_comm)
|
|
|
|
call psi_gth(nerv,h_idx(idx_pt:idx_pt+nerv-1),&
|
|
|
|
call psi_gth(nerv,d_idx(idx_pt:idx_pt+nerv-1),&
|
|
|
|
& y,rcvbuf(rcv_pt:rcv_pt+nerv-1))
|
|
|
|
& y,rcvbuf(rcv_pt:rcv_pt+nerv-1))
|
|
|
|
call igesd2d(icontxt,nerv,1,rcvbuf(rcv_pt),nerv,proc_to_comm,0)
|
|
|
|
call dgesd2d(icontxt,nerv,1,rcvbuf(rcv_pt),nerv,proc_to_comm,0)
|
|
|
|
else if (proc_to_comm .eq. myrow) then
|
|
|
|
else if (proc_to_comm .eq. myrow) then
|
|
|
|
! I send to myself
|
|
|
|
! I send to myself
|
|
|
|
idx_pt = point_to_proc+psb_elem_recv_
|
|
|
|
idx_pt = point_to_proc+psb_elem_recv_
|
|
|
|
rcv_pt = bsdidx(proc_to_comm)
|
|
|
|
rcv_pt = bsdidx(proc_to_comm)
|
|
|
|
call psi_gth(nerv,h_idx(idx_pt:idx_pt+nerv-1),&
|
|
|
|
call psi_gth(nerv,d_idx(idx_pt:idx_pt+nerv-1),&
|
|
|
|
& y,rcvbuf(rcv_pt:rcv_pt+nerv-1))
|
|
|
|
& y,rcvbuf(rcv_pt:rcv_pt+nerv-1))
|
|
|
|
end if
|
|
|
|
end if
|
|
|
|
|
|
|
|
|
|
|
|
point_to_proc = point_to_proc+nerv+nesd+3
|
|
|
|
point_to_proc = point_to_proc+nerv+nesd+3
|
|
|
|
proc_to_comm = h_idx(point_to_proc+psb_proc_id_)
|
|
|
|
proc_to_comm = d_idx(point_to_proc+psb_proc_id_)
|
|
|
|
end do
|
|
|
|
end do
|
|
|
|
|
|
|
|
|
|
|
|
point_to_proc = 1
|
|
|
|
point_to_proc = 1
|
|
|
|
proc_to_comm = h_idx(point_to_proc+psb_proc_id_)
|
|
|
|
proc_to_comm = d_idx(point_to_proc+psb_proc_id_)
|
|
|
|
do while (proc_to_comm .ne. -1)
|
|
|
|
do while (proc_to_comm .ne. -1)
|
|
|
|
nerv = h_idx(point_to_proc+psb_n_elem_recv_)
|
|
|
|
nerv = d_idx(point_to_proc+psb_n_elem_recv_)
|
|
|
|
nesd = h_idx(point_to_proc+nerv+psb_n_elem_send_)
|
|
|
|
nesd = d_idx(point_to_proc+nerv+psb_n_elem_send_)
|
|
|
|
|
|
|
|
|
|
|
|
if(proc_to_comm.ne.myrow) then
|
|
|
|
if(proc_to_comm.ne.myrow) then
|
|
|
|
idx_pt = point_to_proc+nerv+psb_elem_send_
|
|
|
|
idx_pt = point_to_proc+nerv+psb_elem_send_
|
|
|
|
snd_pt = bsdidx(proc_to_comm)
|
|
|
|
snd_pt = bsdidx(proc_to_comm)
|
|
|
|
call psi_sct(nesd,h_idx(idx_pt:idx_pt+nesd-1),&
|
|
|
|
call psi_sct(nesd,d_idx(idx_pt:idx_pt+nesd-1),&
|
|
|
|
& sndbuf(snd_pt:snd_pt+nesd-1),beta,y)
|
|
|
|
& sndbuf(snd_pt:snd_pt+nesd-1),beta,y)
|
|
|
|
else
|
|
|
|
else
|
|
|
|
idx_pt = point_to_proc+nerv+psb_elem_send_
|
|
|
|
idx_pt = point_to_proc+nerv+psb_elem_send_
|
|
|
|
rcv_pt = brvidx(proc_to_comm)
|
|
|
|
rcv_pt = brvidx(proc_to_comm)
|
|
|
|
call psi_sct(nesd,h_idx(idx_pt:idx_pt+nesd-1),&
|
|
|
|
call psi_sct(nesd,d_idx(idx_pt:idx_pt+nesd-1),&
|
|
|
|
& rcvbuf(rcv_pt:rcv_pt+nerv-1),beta,y)
|
|
|
|
& rcvbuf(rcv_pt:rcv_pt+nerv-1),beta,y)
|
|
|
|
end if
|
|
|
|
end if
|
|
|
|
|
|
|
|
|
|
|
|
point_to_proc = point_to_proc+nerv+nesd+3
|
|
|
|
point_to_proc = point_to_proc+nerv+nesd+3
|
|
|
|
proc_to_comm = h_idx(point_to_proc+psb_proc_id_)
|
|
|
|
proc_to_comm = d_idx(point_to_proc+psb_proc_id_)
|
|
|
|
end do
|
|
|
|
end do
|
|
|
|
|
|
|
|
|
|
|
|
else if (swap_send .and. swap_recv) then
|
|
|
|
else if (swap_send .and. swap_recv) then
|
|
|
|
|
|
|
|
|
|
|
|
! First I post all the non blocking receives
|
|
|
|
! First I post all the non blocking receives
|
|
|
|
point_to_proc = 1
|
|
|
|
point_to_proc = 1
|
|
|
|
proc_to_comm = h_idx(point_to_proc+psb_proc_id_)
|
|
|
|
proc_to_comm = d_idx(point_to_proc+psb_proc_id_)
|
|
|
|
do while (proc_to_comm .ne. -1)
|
|
|
|
do while (proc_to_comm .ne. -1)
|
|
|
|
nerv = h_idx(point_to_proc+psb_n_elem_recv_)
|
|
|
|
nerv = d_idx(point_to_proc+psb_n_elem_recv_)
|
|
|
|
nesd = h_idx(point_to_proc+nerv+psb_n_elem_send_)
|
|
|
|
nesd = d_idx(point_to_proc+nerv+psb_n_elem_send_)
|
|
|
|
|
|
|
|
|
|
|
|
if(proc_to_comm.ne.myrow) then
|
|
|
|
if(proc_to_comm.ne.myrow) then
|
|
|
|
p2ptag = krecvid(icontxt,proc_to_comm,myrow)
|
|
|
|
p2ptag = krecvid(icontxt,proc_to_comm,myrow)
|
|
|
|
snd_pt = brvidx(proc_to_comm)
|
|
|
|
snd_pt = brvidx(proc_to_comm)
|
|
|
|
call mpi_irecv(sndbuf(snd_pt),sdsz(proc_to_comm),&
|
|
|
|
call mpi_irecv(sndbuf(snd_pt),sdsz(proc_to_comm),&
|
|
|
|
& mpi_integer,prcid(proc_to_comm),&
|
|
|
|
& mpi_double_precision,prcid(proc_to_comm),&
|
|
|
|
& p2ptag, icomm,rvhd(proc_to_comm),iret)
|
|
|
|
& p2ptag, icomm,rvhd(proc_to_comm),iret)
|
|
|
|
if(iret.ne.mpi_success) then
|
|
|
|
if(iret.ne.mpi_success) then
|
|
|
|
int_err(1) = iret
|
|
|
|
int_err(1) = iret
|
|
|
@ -676,25 +738,25 @@ subroutine psi_iswaptranv(flag,beta,y,desc_a,work,info)
|
|
|
|
end if
|
|
|
|
end if
|
|
|
|
|
|
|
|
|
|
|
|
point_to_proc = point_to_proc+nerv+nesd+3
|
|
|
|
point_to_proc = point_to_proc+nerv+nesd+3
|
|
|
|
proc_to_comm = h_idx(point_to_proc+psb_proc_id_)
|
|
|
|
proc_to_comm = d_idx(point_to_proc+psb_proc_id_)
|
|
|
|
end do
|
|
|
|
end do
|
|
|
|
|
|
|
|
|
|
|
|
! Then I post all the blocking sends
|
|
|
|
! Then I post all the blocking sends
|
|
|
|
point_to_proc = 1
|
|
|
|
point_to_proc = 1
|
|
|
|
proc_to_comm = h_idx(point_to_proc+psb_proc_id_)
|
|
|
|
proc_to_comm = d_idx(point_to_proc+psb_proc_id_)
|
|
|
|
do while (proc_to_comm .ne. -1)
|
|
|
|
do while (proc_to_comm .ne. -1)
|
|
|
|
nerv = h_idx(point_to_proc+psb_n_elem_recv_)
|
|
|
|
nerv = d_idx(point_to_proc+psb_n_elem_recv_)
|
|
|
|
nesd = h_idx(point_to_proc+nerv+psb_n_elem_send_)
|
|
|
|
nesd = d_idx(point_to_proc+nerv+psb_n_elem_send_)
|
|
|
|
|
|
|
|
|
|
|
|
idx_pt = point_to_proc+psb_elem_recv_
|
|
|
|
idx_pt = point_to_proc+psb_elem_recv_
|
|
|
|
rcv_pt = brvidx(proc_to_comm)
|
|
|
|
rcv_pt = brvidx(proc_to_comm)
|
|
|
|
call psi_gth(nerv,h_idx(idx_pt:idx_pt+nerv-1),&
|
|
|
|
call psi_gth(nerv,d_idx(idx_pt:idx_pt+nerv-1),&
|
|
|
|
& y,rcvbuf(rcv_pt:rcv_pt+nerv-1))
|
|
|
|
& y,rcvbuf(rcv_pt:rcv_pt+nerv-1))
|
|
|
|
|
|
|
|
|
|
|
|
if(proc_to_comm .ne. myrow) then
|
|
|
|
if(proc_to_comm .ne. myrow) then
|
|
|
|
p2ptag=ksendid(icontxt,proc_to_comm,myrow)
|
|
|
|
p2ptag=ksendid(icontxt,proc_to_comm,myrow)
|
|
|
|
call mpi_send(rcvbuf(rcv_pt),rvsz(proc_to_comm),&
|
|
|
|
call mpi_send(rcvbuf(rcv_pt),rvsz(proc_to_comm),&
|
|
|
|
& mpi_integer,prcid(proc_to_comm),&
|
|
|
|
& mpi_double_precision,prcid(proc_to_comm),&
|
|
|
|
& p2ptag,icomm,iret)
|
|
|
|
& p2ptag,icomm,iret)
|
|
|
|
if(iret.ne.mpi_success) then
|
|
|
|
if(iret.ne.mpi_success) then
|
|
|
|
int_err(1) = iret
|
|
|
|
int_err(1) = iret
|
|
|
@ -704,96 +766,131 @@ subroutine psi_iswaptranv(flag,beta,y,desc_a,work,info)
|
|
|
|
end if
|
|
|
|
end if
|
|
|
|
end if
|
|
|
|
end if
|
|
|
|
point_to_proc = point_to_proc+nerv+nesd+3
|
|
|
|
point_to_proc = point_to_proc+nerv+nesd+3
|
|
|
|
proc_to_comm = h_idx(point_to_proc+psb_proc_id_)
|
|
|
|
proc_to_comm = d_idx(point_to_proc+psb_proc_id_)
|
|
|
|
end do
|
|
|
|
end do
|
|
|
|
|
|
|
|
|
|
|
|
do i=1, totxch
|
|
|
|
if(.false.) then
|
|
|
|
call mpi_waitany(nprow,rvhd,ixrec,p2pstat,iret)
|
|
|
|
do i=1, totxch
|
|
|
|
if(iret.ne.mpi_success) then
|
|
|
|
call mpi_waitany(nprow,rvhd,ixrec,p2pstat,iret)
|
|
|
|
int_err(1) = iret
|
|
|
|
if(iret.ne.mpi_success) then
|
|
|
|
info=400
|
|
|
|
int_err(1) = iret
|
|
|
|
call psb_errpush(info,name,i_err=int_err)
|
|
|
|
info=400
|
|
|
|
goto 9999
|
|
|
|
call psb_errpush(info,name,i_err=int_err)
|
|
|
|
end if
|
|
|
|
goto 9999
|
|
|
|
|
|
|
|
end if
|
|
|
|
|
|
|
|
|
|
|
|
if (ixrec .ne. mpi_undefined) then
|
|
|
|
if (ixrec .ne. mpi_undefined) then
|
|
|
|
ixrec=ixrec-1 ! mpi_waitany returns an 1 to nprow index
|
|
|
|
ixrec=ixrec-1 ! mpi_waitany returns an 1 to nprow index
|
|
|
|
point_to_proc = ptp(ixrec)
|
|
|
|
point_to_proc = ptp(ixrec)
|
|
|
|
proc_to_comm = h_idx(point_to_proc+psb_proc_id_)
|
|
|
|
proc_to_comm = d_idx(point_to_proc+psb_proc_id_)
|
|
|
|
nerv = h_idx(point_to_proc+psb_n_elem_recv_)
|
|
|
|
nerv = d_idx(point_to_proc+psb_n_elem_recv_)
|
|
|
|
nesd = h_idx(point_to_proc+nerv+psb_n_elem_send_)
|
|
|
|
nesd = d_idx(point_to_proc+nerv+psb_n_elem_send_)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
idx_pt = point_to_proc+nerv+psb_elem_send_
|
|
|
|
|
|
|
|
rcv_pt = bsdidx(proc_to_comm)
|
|
|
|
|
|
|
|
call psi_sct(nesd,d_idx(idx_pt:idx_pt+nesd-1),&
|
|
|
|
|
|
|
|
& rcvbuf(rcv_pt:rcv_pt+nerv-1),beta,y)
|
|
|
|
|
|
|
|
else
|
|
|
|
|
|
|
|
int_err(1) = ixrec
|
|
|
|
|
|
|
|
info=400
|
|
|
|
|
|
|
|
call psb_errpush(info,name,i_err=int_err)
|
|
|
|
|
|
|
|
goto 9999
|
|
|
|
|
|
|
|
end if
|
|
|
|
|
|
|
|
end do
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
point_to_proc = 1
|
|
|
|
|
|
|
|
proc_to_comm = d_idx(point_to_proc+psb_proc_id_)
|
|
|
|
|
|
|
|
do while (proc_to_comm .ne. -1)
|
|
|
|
|
|
|
|
nerv = d_idx(point_to_proc+psb_n_elem_recv_)
|
|
|
|
|
|
|
|
nesd = d_idx(point_to_proc+nerv+psb_n_elem_send_)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if(proc_to_comm .eq. myrow) then
|
|
|
|
|
|
|
|
idx_pt = point_to_proc+nerv+psb_elem_send_
|
|
|
|
|
|
|
|
rcv_pt = brvidx(proc_to_comm)
|
|
|
|
|
|
|
|
call psi_sct(nesd,d_idx(idx_pt:idx_pt+nesd-1),&
|
|
|
|
|
|
|
|
& rcvbuf(rcv_pt:rcv_pt+nerv-1),beta,y)
|
|
|
|
|
|
|
|
end if
|
|
|
|
|
|
|
|
|
|
|
|
idx_pt = point_to_proc+nerv+psb_elem_send_
|
|
|
|
point_to_proc = point_to_proc+nerv+nesd+3
|
|
|
|
rcv_pt = bsdidx(proc_to_comm)
|
|
|
|
proc_to_comm = d_idx(point_to_proc+psb_proc_id_)
|
|
|
|
call psi_sct(nesd,h_idx(idx_pt:idx_pt+nesd-1),&
|
|
|
|
end do
|
|
|
|
& rcvbuf(rcv_pt:rcv_pt+nerv-1),beta,y)
|
|
|
|
|
|
|
|
else
|
|
|
|
else
|
|
|
|
int_err(1) = ixrec
|
|
|
|
|
|
|
|
info=400
|
|
|
|
point_to_proc = 1
|
|
|
|
call psb_errpush(info,name,i_err=int_err)
|
|
|
|
proc_to_comm = d_idx(point_to_proc+psb_proc_id_)
|
|
|
|
goto 9999
|
|
|
|
do while (proc_to_comm .ne. -1)
|
|
|
|
end if
|
|
|
|
nerv = d_idx(point_to_proc+psb_n_elem_recv_)
|
|
|
|
end do
|
|
|
|
nesd = d_idx(point_to_proc+nerv+psb_n_elem_send_)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if(proc_to_comm.ne.myrow) then
|
|
|
|
|
|
|
|
call mpi_wait(rvhd(proc_to_comm),p2pstat,iret)
|
|
|
|
|
|
|
|
if(iret.ne.mpi_success) then
|
|
|
|
|
|
|
|
int_err(1) = iret
|
|
|
|
|
|
|
|
info=400
|
|
|
|
|
|
|
|
call psb_errpush(info,name,i_err=int_err)
|
|
|
|
|
|
|
|
goto 9999
|
|
|
|
|
|
|
|
end if
|
|
|
|
|
|
|
|
idx_pt = point_to_proc+nerv+psb_elem_send_
|
|
|
|
|
|
|
|
snd_pt = bsdidx(proc_to_comm)
|
|
|
|
|
|
|
|
call psi_sct(nesd,d_idx(idx_pt:idx_pt+nesd-1),&
|
|
|
|
|
|
|
|
& sndbuf(snd_pt:snd_pt+nesd-1),beta,y)
|
|
|
|
|
|
|
|
else
|
|
|
|
|
|
|
|
idx_pt = point_to_proc+nerv+psb_elem_send_
|
|
|
|
|
|
|
|
rcv_pt = brvidx(proc_to_comm)
|
|
|
|
|
|
|
|
call psi_sct(nesd,d_idx(idx_pt:idx_pt+nesd-1),&
|
|
|
|
|
|
|
|
& rcvbuf(rcv_pt:rcv_pt+nerv-1),beta,y)
|
|
|
|
|
|
|
|
|
|
|
|
point_to_proc = 1
|
|
|
|
end if
|
|
|
|
proc_to_comm = h_idx(point_to_proc+psb_proc_id_)
|
|
|
|
|
|
|
|
do while (proc_to_comm .ne. -1)
|
|
|
|
|
|
|
|
nerv = h_idx(point_to_proc+psb_n_elem_recv_)
|
|
|
|
|
|
|
|
nesd = h_idx(point_to_proc+nerv+psb_n_elem_send_)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if(proc_to_comm .eq. myrow) then
|
|
|
|
point_to_proc = point_to_proc+nerv+nesd+3
|
|
|
|
idx_pt = point_to_proc+nerv+psb_elem_send_
|
|
|
|
proc_to_comm = d_idx(point_to_proc+psb_proc_id_)
|
|
|
|
rcv_pt = brvidx(proc_to_comm)
|
|
|
|
end do
|
|
|
|
call psi_sct(nesd,h_idx(idx_pt:idx_pt+nesd-1),&
|
|
|
|
|
|
|
|
& rcvbuf(rcv_pt:rcv_pt+nerv-1),beta,y)
|
|
|
|
|
|
|
|
end if
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
point_to_proc = point_to_proc+nerv+nesd+3
|
|
|
|
end if
|
|
|
|
proc_to_comm = h_idx(point_to_proc+psb_proc_id_)
|
|
|
|
|
|
|
|
end do
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
else if (swap_send) then
|
|
|
|
else if (swap_send) then
|
|
|
|
|
|
|
|
|
|
|
|
point_to_proc = 1
|
|
|
|
point_to_proc = 1
|
|
|
|
proc_to_comm = h_idx(point_to_proc+psb_proc_id_)
|
|
|
|
proc_to_comm = d_idx(point_to_proc+psb_proc_id_)
|
|
|
|
do while (proc_to_comm .ne. -1)
|
|
|
|
do while (proc_to_comm .ne. -1)
|
|
|
|
nerv = h_idx(point_to_proc+psb_n_elem_recv_)
|
|
|
|
nerv = d_idx(point_to_proc+psb_n_elem_recv_)
|
|
|
|
nesd = h_idx(point_to_proc+nerv+psb_n_elem_send_)
|
|
|
|
nesd = d_idx(point_to_proc+nerv+psb_n_elem_send_)
|
|
|
|
|
|
|
|
|
|
|
|
idx_pt = point_to_proc+psb_elem_recv_
|
|
|
|
idx_pt = point_to_proc+psb_elem_recv_
|
|
|
|
rcv_pt = brvidx(proc_to_comm)
|
|
|
|
rcv_pt = brvidx(proc_to_comm)
|
|
|
|
call psi_gth(nerv,h_idx(idx_pt:idx_pt+nerv-1),&
|
|
|
|
call psi_gth(nerv,d_idx(idx_pt:idx_pt+nerv-1),&
|
|
|
|
& y,rcvbuf(rcv_pt:rcv_pt+nerv-1))
|
|
|
|
& y,rcvbuf(rcv_pt:rcv_pt+nerv-1))
|
|
|
|
call igesd2d(icontxt,nerv,1,rcvbuf(rcv_pt),nerv,proc_to_comm,0)
|
|
|
|
call dgesd2d(icontxt,nerv,1,rcvbuf(rcv_pt),nerv,proc_to_comm,0)
|
|
|
|
|
|
|
|
|
|
|
|
point_to_proc = point_to_proc+nerv+nesd+3
|
|
|
|
point_to_proc = point_to_proc+nerv+nesd+3
|
|
|
|
proc_to_comm = h_idx(point_to_proc+psb_proc_id_)
|
|
|
|
proc_to_comm = d_idx(point_to_proc+psb_proc_id_)
|
|
|
|
end do
|
|
|
|
end do
|
|
|
|
|
|
|
|
|
|
|
|
else if (swap_recv) then
|
|
|
|
else if (swap_recv) then
|
|
|
|
|
|
|
|
|
|
|
|
point_to_proc = 1
|
|
|
|
point_to_proc = 1
|
|
|
|
proc_to_comm = h_idx(point_to_proc+psb_proc_id_)
|
|
|
|
proc_to_comm = d_idx(point_to_proc+psb_proc_id_)
|
|
|
|
do while (proc_to_comm .ne. -1)
|
|
|
|
do while (proc_to_comm .ne. -1)
|
|
|
|
nerv = h_idx(point_to_proc+psb_n_elem_recv_)
|
|
|
|
nerv = d_idx(point_to_proc+psb_n_elem_recv_)
|
|
|
|
nesd = h_idx(point_to_proc+nerv+psb_n_elem_send_)
|
|
|
|
nesd = d_idx(point_to_proc+nerv+psb_n_elem_send_)
|
|
|
|
|
|
|
|
|
|
|
|
if(proc_to_comm.ne.myrow) then
|
|
|
|
if(proc_to_comm.ne.myrow) then
|
|
|
|
snd_pt = bsdidx(proc_to_comm)
|
|
|
|
snd_pt = bsdidx(proc_to_comm)
|
|
|
|
call igerv2d(icontxt,nesd,1,sndbuf(snd_pt),nesd,proc_to_comm,0)
|
|
|
|
call dgerv2d(icontxt,nesd,1,sndbuf(snd_pt),nesd,proc_to_comm,0)
|
|
|
|
idx_pt = point_to_proc+psb_elem_recv_
|
|
|
|
idx_pt = point_to_proc+psb_elem_recv_
|
|
|
|
rcv_pt = brvidx(proc_to_comm)
|
|
|
|
rcv_pt = brvidx(proc_to_comm)
|
|
|
|
call psi_sct(nesd,h_idx(idx_pt:idx_pt+nesd-1),&
|
|
|
|
call psi_sct(nesd,d_idx(idx_pt:idx_pt+nesd-1),&
|
|
|
|
& sndbuf(snd_pt:snd_pt+nesd-1),beta,y)
|
|
|
|
& sndbuf(snd_pt:snd_pt+nesd-1),beta,y)
|
|
|
|
else
|
|
|
|
else
|
|
|
|
idx_pt = point_to_proc+nerv+psb_elem_send_
|
|
|
|
idx_pt = point_to_proc+nerv+psb_elem_send_
|
|
|
|
rcv_pt = brvidx(proc_to_comm)
|
|
|
|
rcv_pt = brvidx(proc_to_comm)
|
|
|
|
call psi_sct(nesd,h_idx(idx_pt:idx_pt+nesd-1),&
|
|
|
|
call psi_sct(nesd,d_idx(idx_pt:idx_pt+nesd-1),&
|
|
|
|
& rcvbuf(rcv_pt:rcv_pt+nerv-1),beta,y)
|
|
|
|
& rcvbuf(rcv_pt:rcv_pt+nerv-1),beta,y)
|
|
|
|
end if
|
|
|
|
end if
|
|
|
|
|
|
|
|
|
|
|
|
point_to_proc = point_to_proc+nerv+nesd+3
|
|
|
|
point_to_proc = point_to_proc+nerv+nesd+3
|
|
|
|
proc_to_comm = h_idx(point_to_proc+psb_proc_id_)
|
|
|
|
proc_to_comm = d_idx(point_to_proc+psb_proc_id_)
|
|
|
|
end do
|
|
|
|
end do
|
|
|
|
|
|
|
|
|
|
|
|
end if
|
|
|
|
end if
|
|
|
@ -808,4 +905,4 @@ subroutine psi_iswaptranv(flag,beta,y,desc_a,work,info)
|
|
|
|
return
|
|
|
|
return
|
|
|
|
end if
|
|
|
|
end if
|
|
|
|
return
|
|
|
|
return
|
|
|
|
end subroutine psi_iswaptranv
|
|
|
|
end subroutine psi_dswaptranv
|
|
|
|