ai.onnx.SwiGLU
ai.onnx · standard ONNX operator · ONNX opset ≥ 28
Description
Applies the Swish activation to gate input A and multiplies it elementwise by linear input B: Y = (A * sigmoid(alpha * A)) * B. Inputs must have identical shapes; broadcasting is not part of this operator. This package implements float16 and float32; standard bfloat16 and double tensors are not yet implemented.
See the ONNX SwiGLU spec for the reference semantics.
Inputs
| Name | Bind key | Logical dtype | Rank | Shape | Description | Presence |
|---|---|---|---|---|---|---|
A |
a |
T |
— | — | Gate input transformed by the Swish activation. | required |
B |
b |
T |
— | — | Linear value input multiplied by the activated gate; its shape must exactly match A. |
required |
Outputs
| Name | Bind key | Logical dtype | Rank | Shape | Description | Presence |
|---|---|---|---|---|---|---|
Y |
y |
T |
same as A |
same as A |
Elementwise gated product with the same shape and dtype as both inputs. | required |
Attributes
Default values (overridable per request):
| Attribute | Default | Description |
|---|---|---|
alpha |
1 |
Coefficient applied to A inside the sigmoid; defaults to 1.0. |
Type constraints
| Variable | Allowed dtypes |
|---|---|
T |
float32, float16 |
Files
metadata.json— kernel metadata (id, digests, provenance)manifest.json— the op contract (source of truth)test.json— correctness casesbench.json— benchmark + tuning casesswiglu-elementwise.wgsl.jinja
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.SwiGLU", { version: 1 });
const { y } = await kernel({ a: { data: aData, shape: [2, 4] }, b: { data: bData, shape: [2, 4] } });
- Downloads last month
- -
Requires WebGPU support. See the compatibility table.