ggml_fp32_to_bf16_row method

void ggml_fp32_to_bf16_row(
  1. Pointer<Float> arg0,
  2. Pointer<ggml_bf16_t> arg1,
  3. int arg2
)

Implementation

void ggml_fp32_to_bf16_row(
  ffi.Pointer<ffi.Float> arg0,
  ffi.Pointer<ggml_bf16_t> arg1,
  int arg2,
) {
  return _ggml_fp32_to_bf16_row(
    arg0,
    arg1,
    arg2,
  );
}