ai.onnx.Unsqueeze
ai.onnx · standard ONNX operator · ONNX opset ≥ 13
Description
Inserts size-1 dimensions into a tensor at the specified axis positions. The axes input lists dimension indices in the output shape where new dimensions of size 1 are inserted; negative values count from the back of the output rank. The output expanded has the same data as data with rank increased by the number of axes.
See the ONNX Unsqueeze spec for the reference semantics.
Inputs
| Name | Bind key | Logical dtype | WebGPU storage | Rank | Shape | Description | Presence |
|---|---|---|---|---|---|---|---|
data |
data |
T |
runtime-selected; narrow integers and bool use 32-bit slots | — | — | Original input tensor whose data is preserved in the output. | required |
axes |
axes |
S |
int32 |
1 |
— | Logical int64 1-D tensor of axis indices in the output tensor at which to insert size-1 dimensions; negative values count from the back and use int32 WebGPU storage. | required |
Outputs
| Name | Bind key | Logical dtype | Rank | Shape | Description | Presence |
|---|---|---|---|---|---|---|
expanded |
expanded |
T |
derived | — | Reshaped tensor with the same data as the input and size-1 dimensions inserted at the specified axes. | required |
Type constraints
| Variable | Allowed dtypes |
|---|---|
T |
float32, float16, int32, uint32, int16, uint8, int8, bool |
S |
int64 |
Files
metadata.json— kernel metadata (id, digests, provenance)manifest.json— the op contract (source of truth)test.json— correctness casesbench.json— benchmark + tuning casesdatamove-elementwise-copy.wgsl.jinjadatamove-flat-copy.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:
expanded
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.Unsqueeze", { version: 1 });
// Explicit destinations request optional results or supply metadata that cannot be inferred.
const { expanded } = await kernel({
data: { data: dataData, shape: [] },
axes: { data: axesData, shape: [1] },
}, {
outputs: { expanded: { shape: [1], dtype: "float32" } },
});
- Downloads last month
- -
Requires WebGPU support. See the compatibility table.