UpdateDevice_Tensor2D Subroutine

public subroutine UpdateDevice_Tensor2D(this)

Arguments

TypeIntentOptionalAttributesName
class(Tensor2D), intent(inout) :: this

Calls

proc~~updatedevice_tensor2d~~CallsGraph proc~updatedevice_tensor2d UpdateDevice_Tensor2D interface~hipmemcpy hipMemcpy proc~updatedevice_tensor2d->interface~hipmemcpy proc~gpucheck gpuCheck proc~updatedevice_tensor2d->proc~gpucheck

Contents

Source Code


Source Code

  subroutine UpdateDevice_Tensor2D(this)
    implicit none
    class(Tensor2D),intent(inout) :: this

    call gpuCheck(hipMemcpy(this%interior_gpu,c_loc(this%interior),sizeof(this%interior),hipMemcpyHostToDevice))
    call gpuCheck(hipMemcpy(this%boundary_gpu,c_loc(this%boundary),sizeof(this%boundary),hipMemcpyHostToDevice))
    call gpuCheck(hipMemcpy(this%extboundary_gpu,c_loc(this%extboundary),sizeof(this%extboundary),hipMemcpyHostToDevice))

  endsubroutine UpdateDevice_Tensor2D