Graph_GetNumOperatorSets property
Pointer<NativeFunction<OrtStatusPtr Function(Pointer<OrtGraph> graph, Pointer<Size> num_operator_sets)> >
Graph_GetNumOperatorSets
getter/setter pair
\brief Returns the number of operator sets that the graph's model uses.
\note An operator set is uniquely identified by the (domain, opset_version) pair. All models must have at least one entry that specifies which entry of the ONNX operator set is used. The ONNX domain is represented by an empty string.
\paramin graph The OrtGraph instance.
\paramout num_operator_sets Output parameter set to the number of operator sets that the graph's model uses.
\snippet{doc} snippets.dox OrtStatus Return Value
\since Version 1.23.
Implementation
external ffi.Pointer<
ffi.NativeFunction<
OrtStatusPtr Function(
ffi.Pointer<OrtGraph> graph,
ffi.Pointer<ffi.Size> num_operator_sets,
)
>
>
Graph_GetNumOperatorSets;