ai.onnx.ReduceProd
ai.onnx · standard ONNX operator · ONNX opset ≥ 18
Description
Computes the product of elements along specified axes of the input tensor. The output rank matches the input when keepdims is 1; reduced dimensions are pruned when keepdims is 0. Reduction over an empty set of values yields 1.
See the ONNX ReduceProd spec for the reference semantics.
Inputs
| Name | Bind key | Logical dtype | Rank | Shape | Description | Presence |
|---|---|---|---|---|---|---|
data |
x |
T |
— | — | The input tensor to reduce. | required |
Outputs
| Name | Bind key | Logical dtype | Rank | Shape | Description | Presence |
|---|---|---|---|---|---|---|
reduced |
y |
T |
derived | — | The product-reduced output tensor. | required |
Attributes
Default values (overridable per request):
| Attribute | Default | Description |
|---|---|---|
keepdims |
1 |
If 1, retains reduced dimensions with size 1 in the output; if 0, the reduced dimensions are removed. |
noop_with_empty_axes |
0 |
If 0 (default), empty or absent axes trigger reduction over all axes; if 1, empty axes make the op a no-op identity pass-through. |
axes |
[] |
Values of the optional ONNX axes tensor input, supplied through this request attribute; an empty list follows noop_with_empty_axes. |
Type constraints
| Variable | Allowed dtypes |
|---|---|
T |
float32, float16, int32 |
Device requirements
Some implementation variants require subgroups. 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 casesreduce-axis-split-reduce.wgsl.jinjareduce-axis0-splitk-combine.wgsl.jinjareduce-axis0-splitk-reduce.wgsl.jinjareduce-axis0-tilecols.wgsl.jinjareduce-flat-partial.wgsl.jinjareduce-i32-axes02.wgsl.jinjareduce-noop-empty-axes.wgsl.jinjareduce-row-subgroup.wgsl.jinjareduce-row-tree.wgsl.jinjareduce-serial-axis.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.ReduceProd", { version: 1 });
// Explicit destinations request optional results or supply metadata that cannot be inferred.
const { y } = await kernel({ x: { data: xData, shape: [] } }, {
outputs: { y: { shape: [], dtype: "float32" } },
});
- Downloads last month
- -
Requires WebGPU support. See the compatibility table.