ggml_norm method

Implementation

ffi.Pointer<ggml_tensor> ggml_norm(
  ffi.Pointer<ggml_context> ctx,
  ffi.Pointer<ggml_tensor> a,
  double eps,
) {
  return _ggml_norm(
    ctx,
    a,
    eps,
  );
}