SetGraphOutputs property
Pointer<NativeFunction<OrtStatusPtr Function(Pointer<OrtGraph> graph, Pointer<Pointer<OrtValueInfo> > outputs, Size outputs_len)> >
SetGraphOutputs
getter/setter pair
\brief Set the outputs for the OrtGraph.
Set the graph outputs. This will replace any existing outputs with the new values. The OrtGraph takes ownership of the OrtValueInfo instances provided and you should NOT call ReleaseOrtValueInfo.
\paramin graph The OrtGraph instance to update.
\paramin outputs The output OrtValueInfo instances.
\paramin outputs_len The number of output OrtValueInfo instances.
\snippet{doc} snippets.dox OrtStatus Return Value
\since Version 1.22.
Implementation
external ffi.Pointer<
ffi.NativeFunction<
OrtStatusPtr Function(
ffi.Pointer<OrtGraph> graph,
ffi.Pointer<ffi.Pointer<OrtValueInfo>> outputs,
ffi.Size outputs_len,
)
>
>
SetGraphOutputs;