unpack_pipelined_f64 Subroutine

private pure subroutine unpack_pipelined_f64(in, out, dims, locals)

Unpacks part of contiguous buffer recieved from a single rank, real(real64) version.

For 3D arrays:

out(x + in_displacement, y, z) = in(out_displacement + z * nxx * nyy + y * nxx + x)

where out buffer x,y,z are full slab indices, while in buffer x,y,z are indices that were sent from neighbor rank.

Arguments

Type IntentOptional Attributes Name
real(kind=real64), intent(in) :: in(*)

Source host-allocated buffer

real(kind=real64), intent(inout) :: out(*)

Target host-allocated buffer

integer(kind=int32), intent(in) :: dims(:)

Dimensions of the array

integer(kind=int32), intent(in) :: locals(*)

Neighbor data


Called by

proc~~unpack_pipelined_f64~~CalledByGraph proc~unpack_pipelined_f64 unpack_pipelined_f64 proc~execute_f64 execute_f64 proc~execute_f64->proc~unpack_pipelined_f64 proc~unpack_f64 unpack_f64 proc~execute_f64->proc~unpack_f64 proc~unpack_f64->proc~unpack_pipelined_f64