ggml_new_f32 method

Pointer<ggml_tensor> ggml_new_f32(
  1. Pointer<ggml_context> ctx,
  2. double value
)

Implementation

ffi.Pointer<ggml_tensor> ggml_new_f32(
  ffi.Pointer<ggml_context> ctx,
  double value,
) {
  return _ggml_new_f32(
    ctx,
    value,
  );
}