Node_GetNumImplicitInputs property

Pointer<NativeFunction<OrtStatusPtr Function(Pointer<OrtNode> node, Pointer<Size> num_implicit_inputs)>> Node_GetNumImplicitInputs
getter/setter pair

\brief Returns the number of node implicit inputs.

Certain operator types (e.g., If and Loop) contain nested subgraphs. The internal nodes within the nested subgraphs may use values from the outer scope. Those "outer scope" values are considered implicit inputs to the node that contains the subgraphs (e.g., the If or Loop node).

\paramin node The OrtNode instance. \paramout num_implicit_inputs Output parameter set to the number of node implicit inputs.

\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_implicit_inputs,
    )
  >
>
Node_GetNumImplicitInputs;