RegisterExecutionProviderLibrary property
Pointer<NativeFunction<OrtStatusPtr Function(Pointer<OrtEnv> env, Pointer<Char> registration_name, Pointer<Char> path)> >
RegisterExecutionProviderLibrary
getter/setter pair
\brief Register an execution provider library with ORT.
The library must export 'CreateEpFactories' and 'ReleaseEpFactory' functions. See OrtEpApi for more details.
\paramin env The OrtEnv instance to register the library in.
\paramin registration_name The name to register the execution provider library under.
\paramin path The path to the execution provider library.
\snippet{doc} snippets.dox OrtStatus Return Value
\since Version 1.22.
Implementation
external ffi.Pointer<
ffi.NativeFunction<
OrtStatusPtr Function(
ffi.Pointer<OrtEnv> env,
ffi.Pointer<ffi.Char> registration_name,
ffi.Pointer<ffi.Char> path,
)
>
>
RegisterExecutionProviderLibrary;