ggml_div_inplace method

Implementation

ffi.Pointer<ggml_tensor> ggml_div_inplace(
  ffi.Pointer<ggml_context> ctx,
  ffi.Pointer<ggml_tensor> a,
  ffi.Pointer<ggml_tensor> b,
) {
  return _ggml_div_inplace(
    ctx,
    a,
    b,
  );
}