ai.onnx.NonZero

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

Description

Returns the indices of all non-zero elements in X, in row-major order, as a 2-D tensor of shape [rank(X), nnz] where each column is an N-dimensional index. This follows ONNX NonZero, including scalar output shape [0, N] and logical int64 output type. Because every emitted coordinate is bounded by a WebGPU-addressable input dimension, the backend stores this logical int64 tensor losslessly as uint32. The caller must provide the exact data-dependent output shape. String, float64, 64-bit input, and other ONNX input types not listed below are not yet implemented.

See the ONNX NonZero spec for the reference semantics.

Inputs

Name Bind key Logical dtype Rank Shape Description Presence
X x T Input tensor of any shape whose non-zero element indices are to be found. required

Outputs

Name Bind key Logical dtype WebGPU storage Rank Shape Description Presence
Y y I uint32 2 Logical int64 tensor of shape [rank(X), nnz] containing the multi-dimensional indices of non-zero elements, one index per column. The WebGPU storage representation is uint32 because every coordinate is within an addressable input dimension. required

Type constraints

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

Files

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.NonZero", { version: 1 });
// Explicit destinations request optional results or supply metadata that cannot be inferred.
const { y } = await kernel({ x: { data: xData, shape: [4] } }, {
  outputs: { y: { shape: [1, 2], dtype: "int64" } },
});
Downloads last month
-
kernel
webgpu
wgsl
apache-2.0
WebGPU

Requires WebGPU support. See the compatibility table.