KernelInfo_GetEp property

Pointer<NativeFunction<OrtStatusPtr Function(Pointer<OrtKernelInfo> info, Pointer<Pointer<OrtEp>> ep)>> KernelInfo_GetEp
getter/setter pair

\brief Get the OrtEp instance to which the node is assigned from the OrtKernelInfo.

\note Used within OrtKernelImpl implementations to obtain a reference to the OrtEp.

\paramin info The ::OrtKernelInfo instance. \paramout ep Output parameter set to the OrtEp instance associated with the OrtKernelInfo.

\snippet{doc} snippets.dox OrtStatus Return Value \since Version 1.24

Implementation

external ffi.Pointer<
  ffi.NativeFunction<
    OrtStatusPtr Function(
      ffi.Pointer<OrtKernelInfo> info,
      ffi.Pointer<ffi.Pointer<OrtEp>> ep,
    )
  >
>
KernelInfo_GetEp;