ExternalInitializerInfo_GetFilePath property

Pointer<NativeFunction<Pointer<Char> Function(Pointer<OrtExternalInitializerInfo> info)>> ExternalInitializerInfo_GetFilePath
getter/setter pair

\brief Get the relative path to the file that stores the initializer's data.

\note The path is relative to the filesystem directory where the ONNX model was stored. Caller can use Graph_GetModelPath to get the model's full path and construct the absolute path to the external initializer file if necessary.

\paramin info The OrtExternalInitializerInfo instance. \return The relative path to the file that stores the initializer's data. Do NOT free this pointer.

\since Version 1.23.

Implementation

external ffi.Pointer<
  ffi.NativeFunction<
    ffi.Pointer<ffi.Char> Function(
      ffi.Pointer<OrtExternalInitializerInfo> info,
    )
  >
>
ExternalInitializerInfo_GetFilePath;