ggml_sqrt_inplace method

Pointer<ggml_tensor> ggml_sqrt_inplace(
  1. Pointer<ggml_context> ctx,
  2. Pointer<ggml_tensor> a
)

Implementation

ffi.Pointer<ggml_tensor> ggml_sqrt_inplace(
  ffi.Pointer<ggml_context> ctx,
  ffi.Pointer<ggml_tensor> a,
) {
  return _ggml_sqrt_inplace(
    ctx,
    a,
  );
}