ggml_sqrt method

Implementation

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