ggml_get_f32_nd function

  1. @Native<Float Function(Pointer<ggml_tensor>, Int, Int, Int, Int)>(ffi.Pointer<ggml_tensor>, ffi.Int, ffi.Int, ffi.Int, ffi.Int)>()
double ggml_get_f32_nd(
  1. Pointer<ggml_tensor> tensor,
  2. int i0,
  3. int i1,
  4. int i2,
  5. int i3,
)

Implementation

@ffi.Native<
  ffi.Float Function(
    ffi.Pointer<ggml_tensor>,
    ffi.Int,
    ffi.Int,
    ffi.Int,
    ffi.Int,
  )
>()
external double ggml_get_f32_nd(
  ffi.Pointer<ggml_tensor> tensor,
  int i0,
  int i1,
  int i2,
  int i3,
);