GetCompiledModelCompatibilityInfo property

Pointer<NativeFunction<Pointer<Char> Function(Pointer<OrtEp> this_ptr, Pointer<OrtGraph> graph)>> GetCompiledModelCompatibilityInfo
getter/setter pair

\brief Get a string with details about the EP stack used to produce a compiled model.

This function gets a compatibility information string that contains details about the execution provider used to compile a given model. This string can later be used with ValidateCompiledModelCompatibilityInfo to determine if a compiled model is compatible with the EP.

The returned string should be a null-terminated, UTF-8 encoded string. ORT will copy it.

\paramin this_ptr The OrtEp instance. \paramin graph The OrtGraph instance for which to generate compatibility information.

\snippet{doc} snippets.dox OrtStatus Return Value

\since Version 1.23.

Implementation

external ffi.Pointer<
  ffi.NativeFunction<
    ffi.Pointer<ffi.Char> Function(
      ffi.Pointer<OrtEp> this_ptr,
      ffi.Pointer<OrtGraph> graph,
    )
  >
>
GetCompiledModelCompatibilityInfo;