SessionGetProfilingStartTimeNs property

Pointer<NativeFunction<OrtStatusPtr Function(Pointer<OrtSession> session, Pointer<Uint64> out)>> SessionGetProfilingStartTimeNs
getter/setter pair

\brief Return the time that profiling was started

\note The timer precision varies per platform. On Windows and MacOS, the precision will be ~100ns

\paramin session \paramout out nanoseconds of profiling's start time

\snippet{doc} snippets.dox OrtStatus Return Value

Implementation

external ffi.Pointer<
  ffi.NativeFunction<
    OrtStatusPtr Function(
      ffi.Pointer<OrtSession> session,
      ffi.Pointer<ffi.Uint64> out,
    )
  >
>
SessionGetProfilingStartTimeNs;