NodeComputeContext_NodeName property

Pointer<NativeFunction<Pointer<Char> Function(Pointer<OrtNodeComputeContext> context)>> NodeComputeContext_NodeName
getter/setter pair

\brief Query a OrtNodeComputeContext for the name of the node that encapsulates the compiled/fused node.

Used in OrtNodeComputeInfo::CreateComputeState().

\paramin context The OrtNodeComputeContext instance to query. \return The node's name.

\note Returned string is owned by ORT and valid only while OrtNodeComputeInfo::CreateComputeState() is called.

\since Version 1.23.

Implementation

external ffi.Pointer<
  ffi.NativeFunction<
    ffi.Pointer<ffi.Char> Function(ffi.Pointer<OrtNodeComputeContext> context)
  >
>
NodeComputeContext_NodeName;