KernelInfoGetAttribute_float property

Pointer<NativeFunction<OrtStatusPtr Function(Pointer<OrtKernelInfo> info, Pointer<Char> name, Pointer<Float> out)>> KernelInfoGetAttribute_float
getter/setter pair

\brief Get a float stored as an attribute in the graph node

\paramin info ::OrtKernelInfo instance \paramin name Null terminated string of the name of the attribute \paramout out Pointer to memory where the attribute will be stored

\snippet{doc} snippets.dox OrtStatus Return Value

Implementation

external ffi.Pointer<
  ffi.NativeFunction<
    OrtStatusPtr Function(
      ffi.Pointer<OrtKernelInfo> info,
      ffi.Pointer<ffi.Char> name,
      ffi.Pointer<ffi.Float> out,
    )
  >
>
KernelInfoGetAttribute_float;