IsConcurrentRunSupported property
Pointer<NativeFunction<OrtStatusPtr Function(Pointer<OrtEp> this_ptr, Pointer<Bool> is_supported)> >
IsConcurrentRunSupported
getter/setter pair
\brief Gets whether the execution provider supports concurrent run calls made on the session.
\paramin this_ptr The OrtEp instance.
\paramout is_supported Whether concurrent runs are supported.
\snippet{doc} snippets.dox OrtStatus Return Value
\note Implementation of this function is optional and it may be set to NULL. If not implemented, ORT assumes that concurrent runs are supported.
\since Version 1.24.
Implementation
external ffi.Pointer<
ffi.NativeFunction<
OrtStatusPtr Function(
ffi.Pointer<OrtEp> this_ptr,
ffi.Pointer<ffi.Bool> is_supported,
)
>
>
IsConcurrentRunSupported;