Node_GetEpName property
Pointer<NativeFunction<OrtStatusPtr Function(Pointer<OrtNode> node, Pointer<Pointer<Char> > out)> >
Node_GetEpName
getter/setter pair
\brief Returns the execution provider name that this node is assigned to run on. Returns NULL if the node has not been assigned to any execution provider yet. For plugin execution providers, the name is the one returned by OrtEp::GetName.
\paramin node The OrtNode instance.
\paramout out Output execution provider type and can be NULL if node has not been assigned.
\snippet{doc} snippets.dox OrtStatus Return Value
\since Version 1.23.
Implementation
external ffi.Pointer<
ffi.NativeFunction<
OrtStatusPtr Function(
ffi.Pointer<OrtNode> node,
ffi.Pointer<ffi.Pointer<ffi.Char>> out,
)
>
>
Node_GetEpName;