ai.onnx.ReduceMin

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

Description

Computes the minimum of input tensor elements along the specified axes. The output rank matches the input when keepdims is 1; otherwise reduced dimensions are pruned. Reduction over an empty set yields positive infinity when the dtype supports it, or the dtype's maximum value otherwise. For Boolean inputs, false is less than true.

See the ONNX ReduceMin spec for the reference semantics.

Inputs

Name Upstream name Logical dtype Rank Shape Description Presence
x data T The input tensor to reduce. required

Outputs

Name Upstream name Logical dtype Rank Shape Description Presence
y reduced T derived The reduced output tensor containing minimum values. required

Attributes

Default values (overridable per request):

Attribute Default Description
axes [] Values of the optional ONNX axes tensor input, supplied through this request attribute; an empty list follows noop_with_empty_axes.
keepdims 1 If 1, retains the reduced dimensions with size 1 in the output; if 0, those dimensions are pruned.
noop_with_empty_axes 0 When axes is empty: if 0 (default) reduces over all axes; if 1 the op acts as an identity (no-op reduction).

Type constraints

Variable Allowed dtypes
T float32, float16, int32, uint32, int8, uint8, bool

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

Use with @huggingface/kernels

npm install --save-exact @huggingface/kernels@0.0.1-preview.2

Outputs with inferable metadata are allocated automatically. Explicit outputs entries request optional results or provide metadata that cannot be inferred from the supplied inputs and attributes.

This example supplies explicit metadata for:

  • y

The version: 1 option selects the published kernel contract; it is independent of any operator opset, contrib since_version, or model version. It follows the v1 branch as fixes land. To pin exact artifact bytes, pass a 40-character commit revision instead of 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.ReduceMin", { 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
-
kernel
webgpu
wgsl
apache-2.0
WebGPU

Requires WebGPU support. See the compatibility table.