Xenova's picture
Xenova HF Staff
sync 2e7068faf55e
86e512a verified
|
Raw
History Blame
2.97 kB
---
library_name: kernels
license: apache-2.0
tags:
- kernel
- webgpu
- wgsl
---
# ai.onnx.HammingWindow
`ai.onnx` · standard ONNX operator · ONNX opset ≥ 17
## Description
Generates a Hamming window of a given length using the cosine-sum formula `a0 - a1 * cos(2π * n / denom)`, where `a0 ≈ 0.5435` and `a1 ≈ 0.4565`. The window can be periodic (for use in spectral analysis) or symmetric (for filter design).
See the [ONNX `HammingWindow` spec](https://onnx.ai/onnx/operators/onnx__HammingWindow.html) for the reference semantics.
## Inputs
| Name | Bind key | Logical dtype | Rank | Shape | Description | Presence |
| --- | --- | --- | --- | --- | --- | --- |
| `size` | `size` | `T1` | `0` | — | Scalar length of the window to generate. | required |
## Outputs
| Name | Bind key | Logical dtype | Rank | Shape | Description | Presence |
| --- | --- | --- | --- | --- | --- | --- |
| `output` | `y` | `T2` | `1` | — | 1-D Hamming window tensor of shape `[size]`. | required |
## Attributes
Default values (overridable per request):
| Attribute | Default | Description |
| --- | --- | --- |
| `output_datatype` | `1` | Data type of the output tensor, specified as a TensorProto DataType enum value; default `1` (FLOAT). |
| `periodic` | `1` | When `1` (default), returns a periodic window of length `size` (suitable for spectral analysis); when `0`, returns a symmetric window of length `size`. |
## Type constraints
| Variable | Allowed dtypes |
| --- | --- |
| `T1` | `int32` |
| `T2` | `float32`, `float16`, `uint32`, `int32`, `uint8`, `int8`, `int16` |
## Files
- [`metadata.json`](build/webgpu/metadata.json) — kernel metadata (id, digests, provenance)
- [`manifest.json`](build/webgpu/manifest.json) — the op contract (source of truth)
- [`test.json`](build/webgpu/test.json) — correctness cases
- [`bench.json`](build/webgpu/bench.json) — benchmark + tuning cases
- [`window-cosine-sum.wgsl.jinja`](build/webgpu/window-cosine-sum.wgsl.jinja)
## Use with `@huggingface/kernels`
The loader automatically allocates outputs whose metadata it can derive from the manifest contract and this call.
The explicit `outputs` entries provide shape and logical dtype metadata for the results listed below:
- `y`
Each entry either requests an optional result or supplies metadata that cannot be inferred from the inputs.
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.
```js
import { getKernel } from "@huggingface/kernels";
const kernel = await getKernel("webgpu-kernels/ai.onnx.HammingWindow", { version: 1 });
// Explicit destinations request optional results or supply metadata that cannot be inferred.
const { y } = await kernel({ size: { data: sizeData, shape: [] } }, {
outputs: { y: { shape: [1], dtype: "float32" } },
});
```