permute_forward_read_f32 Subroutine

public pure subroutine permute_forward_read_f32(in, out, dims)

Forward permutation of a 2D and 3D arrays, contiguous reading, real(real32) version

Forward permutation is defined as:

out(x,y,z) = in(z,x,y) for 3D arrays

out(x,y) = in(y,x) for 2D arrays

Arguments

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

Source host-allocated buffer

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

Target host-allocated buffer

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

Dimensions of the array


Called by

proc~~permute_forward_read_f32~~CalledByGraph proc~permute_forward_read_f32 permute_forward_read_f32 proc~execute_f32 execute_f32 proc~execute_f32->proc~permute_forward_read_f32 proc~run_permute_forward run_permute_forward proc~run_permute_forward->proc~permute_forward_read_f32 program~test_host_kernels test_host_kernels program~test_host_kernels->proc~run_permute_forward