GridInterp_Scalar1D Subroutine

public subroutine GridInterp_Scalar1D(this, f)

Arguments

TypeIntentOptionalAttributesName
class(Scalar1D), intent(in) :: this
type(c_ptr), intent(inout) :: f

Calls

proc~~gridinterp_scalar1d~~CallsGraph proc~gridinterp_scalar1d GridInterp_Scalar1D interface~matrixop_1d_gpu~2 MatrixOp_1D_gpu proc~gridinterp_scalar1d->interface~matrixop_1d_gpu~2

Contents

Source Code


Source Code

  subroutine GridInterp_Scalar1D(this,f)
    implicit none
    class(Scalar1D),intent(in) :: this
    type(c_ptr),intent(inout) :: f

    call MatrixOp_1D_gpu(this%interp%iMatrix_gpu, &
                         this%interior_gpu, &
                         f,this%M+1,this%N+1, &
                         this%nvar*this%nelem)

  endsubroutine GridInterp_Scalar1D