SyncStream_GetHandle property

Pointer<NativeFunction<Pointer<Void> Function(Pointer<OrtSyncStream> stream)>> SyncStream_GetHandle
getter/setter pair

\brief Get the native handle of the sync stream.

This returns the native handle for the stream. e.g. cudaStream_t for CUDA streams.

\paramin stream The OrtSyncStream instance to get the handle from.

\returns The native handle of the stream.

\since Version 1.23

Implementation

external ffi.Pointer<
  ffi.NativeFunction<
    ffi.Pointer<ffi.Void> Function(ffi.Pointer<OrtSyncStream> stream)
  >
>
SyncStream_GetHandle;