GetCapability property

Pointer<NativeFunction<OrtStatusPtr Function(Pointer<OrtEp> this_ptr, Pointer<OrtGraph> graph, Pointer<OrtEpGraphSupportInfo> graph_support_info)>> GetCapability
getter/setter pair

\brief Get information about the nodes supported by the OrtEp instance.

IMPORTANT: This is not the final version of this API function. This is currently experimental but will be stabilized by the ONNX Runtime 1.23 release.

\paramin this_ptr The OrtEp instance. \paramin graph The OrtGraph instance for which to populate node support. The OrtGraph could be a nested subgraph contained by a node (e.g., an If or Loop node). ONNX Runtime calls this function separately for each nested subgraph. \paraminout graph_support_info OrtEpGraphSupportInfo instance that the implementer must fill out in order to specify the supported nodes.

\snippet{doc} snippets.dox OrtStatus Return Value

\since Version 1.23.

Implementation

external ffi.Pointer<
  ffi.NativeFunction<
    OrtStatusPtr Function(
      ffi.Pointer<OrtEp> this_ptr,
      ffi.Pointer<OrtGraph> graph,
      ffi.Pointer<OrtEpGraphSupportInfo> graph_support_info,
    )
  >
>
GetCapability;