ai.onnx.HardSigmoid

ai.onnx · standard ONNX operator · ONNX opset ≥ 6

Description

Applies the HardSigmoid function elementwise: y = max(0, min(1, alpha * x + beta)). Produces an output tensor of the same shape as the input.

See the ONNX HardSigmoid spec for the reference semantics.

Inputs

Name Bind key Logical dtype Rank Shape Description Presence
X x T Values transformed elementwise by the clipped affine HardSigmoid function. required

Outputs

Name Bind key Logical dtype Rank Shape Description Presence
Y y T same as X same as X Output tensor with HardSigmoid applied elementwise; same shape as the input. required

Attributes

Default values (overridable per request):

Attribute Default Description
alpha 0.2 Slope scaling factor applied to the input before adding beta; defaults to 0.2.
beta 0.5 Bias added after scaling by alpha; defaults to 0.5.

Type constraints

Variable Allowed dtypes
T float32, float16

Files

Use with @huggingface/kernels

The loader derives every required output's shape and logical dtype from the manifest contract and this call. It then allocates the result tensors automatically.

The version: 1 option selects the published kernel contract; it is independent of any operator opset, contrib since_version, or model version.

Replace each *Data placeholder with a typed array containing the corresponding input data.

import { getKernel } from "@huggingface/kernels";

const kernel = await getKernel("webgpu-kernels/ai.onnx.HardSigmoid", { version: 1 });
const { y } = await kernel({ x: { data: xData, shape: [5] } });
Downloads last month
-
kernel
webgpu
wgsl
apache-2.0
WebGPU

Requires WebGPU support. See the compatibility table.