--- library_name: kernels license: apache-2.0 tags: - kernel - webgpu - wgsl --- # ai.onnx.Tile `ai.onnx` · standard ONNX operator · ONNX opset ≥ 13 ## Description Constructs a tensor by tiling a given tensor: each dimension `i` of the input is repeated `repeats[i]` times, so `output_dim[i] = input_dim[i] * repeats[i]`. Equivalent to NumPy `tile` but without broadcasting. See the [ONNX `Tile` spec](https://onnx.ai/onnx/operators/onnx__Tile.html) for the reference semantics. ## Inputs | Name | Bind key | Logical dtype | WebGPU storage | Rank | Shape | Description | Presence | | --- | --- | --- | --- | --- | --- | --- | --- | | `input` | `input` | `T` | runtime-selected; narrow integers and bool use 32-bit slots | — | — | Input tensor of any shape. | required | | `repeats` | `repeats` | `S` | `uint32` | `1` | — | Logical int64 1-D tensor of length equal to the input rank, specifying non-negative repeat counts stored as uint32 by WebGPU. | required | ## Outputs | Name | Bind key | Logical dtype | Rank | Shape | Description | Presence | | --- | --- | --- | --- | --- | --- | --- | | `output` | `output` | `T` | same as `input` | — | Output tensor of the same type as the input, with each dimension scaled by the corresponding repeat count. | required | ## Type constraints | Variable | Allowed dtypes | | --- | --- | | `T` | `float32`, `float16`, `uint32`, `int32`, `int16`, `uint8`, `int8`, `bool` | | `S` | `int64` | ## Files - [`metadata.json`](build/webgpu/metadata.json) — kernel metadata (id, digests, provenance) - [`manifest.json`](build/webgpu/manifest.json) — the op contract (source of truth) - [`test.json`](build/webgpu/test.json) — correctness cases - [`bench.json`](build/webgpu/bench.json) — benchmark + tuning cases - [`datamove-tile-vec4.wgsl.jinja`](build/webgpu/datamove-tile-vec4.wgsl.jinja) - [`tile.wgsl.jinja`](build/webgpu/tile.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: - `output` 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. ```js import { getKernel } from "@huggingface/kernels"; const kernel = await getKernel("webgpu-kernels/ai.onnx.Tile", { version: 1 }); // Explicit destinations request optional results or supply metadata that cannot be inferred. const { output } = await kernel({ input: { data: inputData, shape: [2, 1, 3] }, repeats: { data: repeatsData, shape: [3] }, }, { outputs: { output: { shape: [2, 1, 3], dtype: "float32" } }, }); ```