ggml_hardsigmoid method
hardsigmoid(x) = relu6(x + 3) / 6
Implementation
ffi.Pointer<ggml_tensor> ggml_hardsigmoid(
  ffi.Pointer<ggml_context> ctx,
  ffi.Pointer<ggml_tensor> a,
) {
  return _ggml_hardsigmoid(
    ctx,
    a,
  );
}
hardsigmoid(x) = relu6(x + 3) / 6
ffi.Pointer<ggml_tensor> ggml_hardsigmoid(
  ffi.Pointer<ggml_context> ctx,
  ffi.Pointer<ggml_tensor> a,
) {
  return _ggml_hardsigmoid(
    ctx,
    a,
  );
}