Node_GetNumSubgraphs property
Pointer<NativeFunction<OrtStatusPtr Function(Pointer<OrtNode> node, Pointer<Size> num_subgraphs)> >
Node_GetNumSubgraphs
getter/setter pair
\brief Returns the number of subgraphs contained by the given node.
\note Only certain operator types (e.g., If and Loop) contain nested subgraphs.
\paramin node The OrtNode instance.
\paramout num_subgraphs Output parameter set to the number of node subgraphs.
\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.Size> num_subgraphs,
)
>
>
Node_GetNumSubgraphs;