ai.onnx.GlobalLpPool
ai.onnx · standard ONNX operator · ONNX opset ≥ 2
Description
Applies Lp pooling globally across all spatial dimensions of the input, equivalent to LpPool with the kernel spanning the full spatial extent. Each output value is the Lp norm (p-th root of sum of absolute values raised to the power p) over all spatial positions in a single channel.
See the ONNX GlobalLpPool spec for the reference semantics.
Inputs
| Name | Bind key | Logical dtype | Rank | Shape | Description | Presence |
|---|---|---|---|---|---|---|
X |
x |
T |
— | — | Input tensor of shape (N x C x D1 x ... x Dn); the spatial dimensions D1...Dn are reduced. |
required |
Outputs
| Name | Bind key | Logical dtype | Rank | Shape | Description | Presence |
|---|---|---|---|---|---|---|
Y |
y |
T |
same as X |
— | Output tensor of shape (N x C x 1 x ... x 1); same rank as the input with all spatial dimensions set to 1. |
required |
Attributes
Default values (overridable per request):
| Attribute | Default | Description |
|---|---|---|
p |
2 |
The p value of the Lp norm for pooling over the spatial dimensions; defaults to 2 (Euclidean norm). |
Type constraints
| Variable | Allowed dtypes |
|---|---|
T |
float32, float16 |
Device requirements
Some implementation variants require shader-f16. These are route-specific capabilities, not package-wide requirements; availability also depends on the request shape and dtype.
Files
metadata.json— kernel metadata (id, digests, provenance)manifest.json— the op contract (source of truth)test.json— correctness casesbench.json— benchmark + tuning casesglobal-lp-pool.wgsl.jinjapool-global-reduction.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.
import { getKernel } from "@huggingface/kernels";
const kernel = await getKernel("webgpu-kernels/ai.onnx.GlobalLpPool", { version: 1 });
// Explicit destinations request optional results or supply metadata that cannot be inferred.
const { y } = await kernel({ x: { data: xData, shape: [1, 2, 4] } }, {
outputs: { y: { shape: [1, 2, 1], dtype: "float32" } },
});
- Downloads last month
- -
Requires WebGPU support. See the compatibility table.