ggml_hardsigmoid method

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

Implementation

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