Xenova HF Staff commited on
Commit
4ebabda
·
verified ·
1 Parent(s): e1b1cf9

sync 91d990483a17

Browse files
README.md CHANGED
@@ -18,15 +18,15 @@ See the [ONNX `Round` spec](https://onnx.ai/onnx/operators/onnx__Round.html) for
18
 
19
  ## Inputs
20
 
21
- | Name | Bind key | Logical dtype | Rank | Shape | Description | Presence |
22
  | --- | --- | --- | --- | --- | --- | --- |
23
- | `X` | `x` | `T` | — | — | Input tensor whose elements are to be rounded. | required |
24
 
25
  ## Outputs
26
 
27
- | Name | Bind key | Logical dtype | Rank | Shape | Description | Presence |
28
  | --- | --- | --- | --- | --- | --- | --- |
29
- | `Y` | `y` | `T` | same as `X` | same as `X` | Output tensor with each element rounded to the nearest integer (ties rounded to the nearest even integer); same shape and type as the input. | required |
30
 
31
  ## Type constraints
32
 
@@ -36,7 +36,7 @@ See the [ONNX `Round` spec](https://onnx.ai/onnx/operators/onnx__Round.html) for
36
 
37
  ## Files
38
 
39
- - [`metadata.json`](build/webgpu/metadata.json) — kernel metadata (id, digests, provenance)
40
  - [`manifest.json`](build/webgpu/manifest.json) — the op contract (source of truth)
41
  - [`test.json`](build/webgpu/test.json) — correctness cases
42
  - [`bench.json`](build/webgpu/bench.json) — benchmark + tuning cases
@@ -45,10 +45,14 @@ See the [ONNX `Round` spec](https://onnx.ai/onnx/operators/onnx__Round.html) for
45
 
46
  ## Use with `@huggingface/kernels`
47
 
48
- The loader derives every required output's shape and logical dtype from the manifest contract and this call.
49
- It then allocates the result tensors automatically.
 
 
 
50
 
51
  The `version: 1` option selects the published kernel contract; it is independent of any operator opset, contrib `since_version`, or model version.
 
52
 
53
  Replace each `*Data` placeholder with a typed array containing the corresponding input data.
54
 
 
18
 
19
  ## Inputs
20
 
21
+ | Name | Upstream name | Logical dtype | Rank | Shape | Description | Presence |
22
  | --- | --- | --- | --- | --- | --- | --- |
23
+ | `x` | `X` | `T` | — | — | Input tensor whose elements are to be rounded. | required |
24
 
25
  ## Outputs
26
 
27
+ | Name | Upstream name | Logical dtype | Rank | Shape | Description | Presence |
28
  | --- | --- | --- | --- | --- | --- | --- |
29
+ | `y` | `Y` | `T` | same as `x` | same as `x` | Output tensor with each element rounded to the nearest integer (ties rounded to the nearest even integer); same shape and type as the input. | required |
30
 
31
  ## Type constraints
32
 
 
36
 
37
  ## Files
38
 
39
+ - [`metadata.json`](build/webgpu/metadata.json) — kernel metadata (id, digests, per-variant templates, provenance)
40
  - [`manifest.json`](build/webgpu/manifest.json) — the op contract (source of truth)
41
  - [`test.json`](build/webgpu/test.json) — correctness cases
42
  - [`bench.json`](build/webgpu/bench.json) — benchmark + tuning cases
 
45
 
46
  ## Use with `@huggingface/kernels`
47
 
48
+ ```sh
49
+ npm install --save-exact @huggingface/kernels@0.0.1-preview.2
50
+ ```
51
+
52
+ Required output shapes and logical data types are inferred from the supplied inputs and attributes; result tensors are allocated automatically.
53
 
54
  The `version: 1` option selects the published kernel contract; it is independent of any operator opset, contrib `since_version`, or model version.
55
+ It follows the `v1` branch as fixes land. To pin exact artifact bytes, pass a 40-character commit `revision` instead of `version`.
56
 
57
  Replace each `*Data` placeholder with a typed array containing the corresponding input data.
58
 
build/webgpu/bench.json CHANGED
@@ -1,5 +1,4 @@
1
  {
2
- "op": "ai.onnx.Round",
3
  "cases": [
4
  {
5
  "name": "1m_f32",
 
1
  {
 
2
  "cases": [
3
  {
4
  "name": "1m_f32",
build/webgpu/manifest.json CHANGED
@@ -2,28 +2,16 @@
2
  "domain": "ai.onnx",
3
  "name": "Round",
4
  "sinceVersion": 11,
5
- "description": "Rounds each element of the input tensor to the nearest integer, with ties (halves) broken by rounding to the nearest even integer. Integral values, `+0`, `-0`, `NaN`, and infinities are returned unchanged; the output has the same shape and type as the input.",
6
- "inputs": [{ "role": "X", "dtype": "T", "description": "Input tensor whose elements are to be rounded." }],
7
- "outputs": [
8
- {
9
- "role": "Y",
10
- "dtype": "T",
11
- "rank": "ranks.X",
12
- "description": "Output tensor with each element rounded to the nearest integer (ties rounded to the nearest even integer); same shape and type as the input.",
13
- "shape": "shapes.X"
14
- }
15
- ],
16
  "typeConstraints": { "T": ["float32", "float16"] },
17
- "args": {
18
- "x": { "kind": "tensor", "semantic": "X", "role": "input" },
19
- "y": { "kind": "tensor", "semantic": "Y", "role": "output" }
20
- },
21
- "tunables": { "WORKGROUP_SIZE": 256 },
22
  "variants": [
23
  {
24
  "id": "same_layout_vec4",
 
25
  "when": ["numel(shapes.x) > 0", "numel(shapes.x) % 4 == 0", "numel(shapes.x) == numel(shapes.y)", "f16Ok(dtypes.T)"],
26
- "constants": {
27
  "scalar": "dtypes.T",
28
  "usesF16": "dtypes.T == \"f16\"",
29
  "vectorScalar": "\"vec4<\" ~ dtypes.T ~ \">\""
@@ -32,47 +20,103 @@
32
  {
33
  "id": "main",
34
  "name": "Round.vec4",
35
- "source": { "shader": "unary-vec4.wgsl.jinja", "inputs": { "op": "\"round\"" } },
36
- "bindings": [
37
- { "name": "x", "arg": "x", "buffer": { "type": "read-only-storage" }, "elementType": "$vectorScalar" },
38
- { "name": "y", "arg": "y", "buffer": { "type": "storage" }, "elementType": "$vectorScalar" },
39
- {
40
- "name": "params",
41
- "semantic": "kernel.params",
42
- "buffer": { "type": "uniform" },
43
- "struct": {
44
- "name": "Params",
45
- "fields": [{ "name": "count", "type": "u32", "value": "numel(shapes.y) / 4" }]
46
- }
47
- }
48
- ],
49
- "dispatch": { "threads": "numel(shapes.y) / 4", "workgroupSize": "tunables.WORKGROUP_SIZE" }
50
  }
51
- ],
52
- "priority": 20
53
  },
54
  {
55
  "id": "elementwise",
56
  "when": ["numel(shapes.x) == numel(shapes.y)", "f16Ok(dtypes.T)"],
57
- "constants": { "scalar": "dtypes.T", "usesF16": "dtypes.T == \"f16\"" },
58
  "passes": [
59
  {
60
  "id": "main",
61
  "name": "Round",
62
- "source": { "shader": "unary-scalar.wgsl.jinja", "inputs": { "op": "\"round\"", "itemsPerInvocation": 4 } },
63
- "bindings": [
64
- { "name": "x", "arg": "x", "buffer": { "type": "read-only-storage" }, "elementType": "$scalar" },
65
- { "name": "y", "arg": "y", "buffer": { "type": "storage" }, "elementType": "$scalar" },
66
- {
67
- "name": "params",
68
- "semantic": "kernel.params",
69
- "buffer": { "type": "uniform" },
70
- "struct": { "name": "Params", "fields": [{ "name": "count", "type": "u32", "value": "numel(shapes.y)" }] }
71
- }
72
- ],
73
- "dispatch": { "threads": "ceilDiv(numel(shapes.y), 4)", "workgroupSize": "tunables.WORKGROUP_SIZE" }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
74
  }
75
  ]
76
  }
77
- ]
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
78
  }
 
2
  "domain": "ai.onnx",
3
  "name": "Round",
4
  "sinceVersion": 11,
5
+ "inputs": { "x": { "onnx": "X", "dtype": "T" } },
6
+ "outputs": { "y": { "onnx": "Y", "dtype": "T", "rank": "ranks.x", "shape": "shapes.x" } },
 
 
 
 
 
 
 
 
 
7
  "typeConstraints": { "T": ["float32", "float16"] },
8
+ "tunables": { "WORKGROUP_SIZE": { "default": 256 } },
 
 
 
 
9
  "variants": [
10
  {
11
  "id": "same_layout_vec4",
12
+ "priority": 20,
13
  "when": ["numel(shapes.x) > 0", "numel(shapes.x) % 4 == 0", "numel(shapes.x) == numel(shapes.y)", "f16Ok(dtypes.T)"],
14
+ "derive": {
15
  "scalar": "dtypes.T",
16
  "usesF16": "dtypes.T == \"f16\"",
17
  "vectorScalar": "\"vec4<\" ~ dtypes.T ~ \">\""
 
20
  {
21
  "id": "main",
22
  "name": "Round.vec4",
23
+ "shader": "unary-vec4.wgsl.jinja",
24
+ "derive": {
25
+ "op": "\"round\"",
26
+ "vec4PerThread": "4 if numel(shapes.y) * dtypeBytes(tensorDtypes.y) <= 16777216 else 1"
27
+ },
28
+ "bindings": ["x", "y", "params_unary"],
29
+ "dispatch": {
30
+ "x": "min(ceilDiv((ceilDiv(numel(shapes.y) / 4, 4 if numel(shapes.y) * dtypeBytes(tensorDtypes.y) <= 16777216 else 1)), (tunables.WORKGROUP_SIZE)), 65535)",
31
+ "y": "ceilDiv(ceilDiv((ceilDiv(numel(shapes.y) / 4, 4 if numel(shapes.y) * dtypeBytes(tensorDtypes.y) <= 16777216 else 1)), (tunables.WORKGROUP_SIZE)), 65535)",
32
+ "z": 1
33
+ }
 
 
 
 
34
  }
35
+ ]
 
36
  },
37
  {
38
  "id": "elementwise",
39
  "when": ["numel(shapes.x) == numel(shapes.y)", "f16Ok(dtypes.T)"],
40
+ "derive": { "scalar": "dtypes.T", "usesF16": "dtypes.T == \"f16\"" },
41
  "passes": [
42
  {
43
  "id": "main",
44
  "name": "Round",
45
+ "shader": "unary-scalar.wgsl.jinja",
46
+ "derive": { "op": "\"round\"", "itemsPerInvocation": 4 },
47
+ "bindings": ["x_2", "y_2", "params_2_unary"],
48
+ "dispatch": {
49
+ "x": "min(ceilDiv((ceilDiv(numel(shapes.y), 4)), (tunables.WORKGROUP_SIZE)), 65535)",
50
+ "y": "ceilDiv(ceilDiv((ceilDiv(numel(shapes.y), 4)), (tunables.WORKGROUP_SIZE)), 65535)",
51
+ "z": 1
52
+ }
53
+ }
54
+ ]
55
+ },
56
+ {
57
+ "id": "same_layout_vec4_tail",
58
+ "priority": 19,
59
+ "when": ["numel(shapes.x) > 4", "numel(shapes.x) % 4 != 0", "numel(shapes.x) == numel(shapes.y)", "f16Ok(dtypes.T)"],
60
+ "derive": {
61
+ "scalar": "dtypes.T",
62
+ "usesF16": "dtypes.T == \"f16\"",
63
+ "vectorScalar": "\"vec4<\" ~ dtypes.T ~ \">\""
64
+ },
65
+ "passes": [
66
+ {
67
+ "id": "bulk",
68
+ "name": "Round.vec4Bulk",
69
+ "shader": "unary-vec4.wgsl.jinja",
70
+ "derive": {
71
+ "op": "\"round\"",
72
+ "vec4PerThread": "4 if numel(shapes.y) * dtypeBytes(tensorDtypes.y) <= 16777216 else 1"
73
+ },
74
+ "bindings": ["x", "y", "params_unary_tail"],
75
+ "dispatch": {
76
+ "x": "min(ceilDiv((ceilDiv(floor(numel(shapes.y) / 4), 4 if numel(shapes.y) * dtypeBytes(tensorDtypes.y) <= 16777216 else 1)), (tunables.WORKGROUP_SIZE)), 65535)",
77
+ "y": "ceilDiv(ceilDiv((ceilDiv(floor(numel(shapes.y) / 4), 4 if numel(shapes.y) * dtypeBytes(tensorDtypes.y) <= 16777216 else 1)), (tunables.WORKGROUP_SIZE)), 65535)",
78
+ "z": 1
79
+ }
80
+ },
81
+ {
82
+ "id": "tail",
83
+ "name": "Round.tail",
84
+ "shader": "unary-scalar.wgsl.jinja",
85
+ "derive": { "op": "\"round\"", "itemsPerInvocation": 4, "tailOnly": true },
86
+ "bindings": ["x_2", "y_2", "params_2_unary_tail"],
87
+ "dispatch": {
88
+ "x": "min(ceilDiv((1), (tunables.WORKGROUP_SIZE)), 65535)",
89
+ "y": "ceilDiv(ceilDiv((1), (tunables.WORKGROUP_SIZE)), 65535)",
90
+ "z": 1
91
+ }
92
  }
93
  ]
94
  }
95
+ ],
96
+ "bindings": {
97
+ "x": { "buffer": "read-only-storage", "elementType": "$vectorScalar" },
98
+ "y": { "buffer": "storage", "elementType": "$vectorScalar" },
99
+ "params_unary": {
100
+ "buffer": "uniform",
101
+ "struct": [{ "name": "count", "type": "u32", "value": "numel(shapes.y) / 4" }],
102
+ "name": "params"
103
+ },
104
+ "x_2": { "buffer": "read-only-storage", "name": "x", "elementType": "$scalar" },
105
+ "y_2": { "buffer": "storage", "name": "y", "elementType": "$scalar" },
106
+ "params_2_unary": {
107
+ "buffer": "uniform",
108
+ "name": "params",
109
+ "struct": [{ "name": "count", "type": "u32", "value": "numel(shapes.y)" }]
110
+ },
111
+ "params_unary_tail": {
112
+ "buffer": "uniform",
113
+ "struct": [{ "name": "count", "type": "u32", "value": "floor(numel(shapes.y) / 4)" }],
114
+ "name": "params"
115
+ },
116
+ "params_2_unary_tail": {
117
+ "buffer": "uniform",
118
+ "name": "params",
119
+ "struct": [{ "name": "count", "type": "u32", "value": "numel(shapes.y)" }]
120
+ }
121
+ }
122
  }
build/webgpu/metadata.json CHANGED
@@ -1,19 +1,26 @@
1
  {
2
  "name": "ai.onnx.Round",
3
- "id": "_ai_onnx_round_webgpu_38babf5",
4
  "version": 1,
5
  "license": "Apache-2.0",
6
  "backend": { "type": "webgpu" },
7
  "digest": {
8
  "algorithm": "sha256",
9
  "files": {
10
- "bench.json": "lIuHFuHLtHRtjtXoAIXYIG+bXOUltTMEoXpE4SGPqHU=",
11
- "manifest.json": "EVFdIT0h/X9fxpM1yXxmHW/dCLQCuvAfT0AJV5EqEzg=",
12
- "test.json": "2qMWsikAb4fP4MMMY66ni6jkynvYQ57nvqkInr/hYsI=",
13
- "unary-scalar.wgsl.jinja": "U3uaBwSgjP7+Vs2W4m13V+B+uEVdUapNWF/Mjqce8Wo=",
14
- "unary-vec4.wgsl.jinja": "eo2cbv63qywA0JG4vKArAVMgJ+TIJx1be9AS1HGL2bQ="
15
  }
16
  },
17
- "provenance": { "kernel": { "sha": "2e7068faf55e7f43df740015f6d1ee49391a41c5", "dirty": false } },
18
- "webgpu": { "manifestSpec": "1.0", "specialized": true, "opPath": "ops/ai.onnx.Round" }
 
 
 
 
 
 
 
19
  }
 
1
  {
2
  "name": "ai.onnx.Round",
3
+ "id": "_ai_onnx_round_webgpu_8720b09",
4
  "version": 1,
5
  "license": "Apache-2.0",
6
  "backend": { "type": "webgpu" },
7
  "digest": {
8
  "algorithm": "sha256",
9
  "files": {
10
+ "bench.json": "Fj45D4UVUgtaudE5zhrOtpI17/0tvVFa8AbU73LQgj0=",
11
+ "manifest.json": "1IL6DLz9+yANYTXglho/MMGPsTv97VZZJJX/kNzaFRc=",
12
+ "test.json": "XWApx2m5mbs/EzJ79W35IhSR0jqAQHOHrYOaNjrLyfs=",
13
+ "unary-scalar.wgsl.jinja": "ssOF31oBTkH47PcHu5hs7RQMvc1XZgKf3arGgSvSBb8=",
14
+ "unary-vec4.wgsl.jinja": "RGh5VM5n3YBLB1DlyQUO0CVUxUy364dNWVIFDwZ6rWY="
15
  }
16
  },
17
+ "provenance": { "kernel": { "sha": "91d990483a174128daf7673f3f37a7c890493ae1", "dirty": false } },
18
+ "webgpu": {
19
+ "manifestSpec": "2.0",
20
+ "variants": {
21
+ "same_layout_vec4": ["unary-vec4.wgsl.jinja"],
22
+ "elementwise": ["unary-scalar.wgsl.jinja"],
23
+ "same_layout_vec4_tail": ["unary-scalar.wgsl.jinja", "unary-vec4.wgsl.jinja"]
24
+ }
25
+ }
26
  }
build/webgpu/test.json CHANGED
@@ -1,5 +1,4 @@
1
  {
2
- "op": "ai.onnx.Round",
3
  "cases": [
4
  {
5
  "name": "ties_to_even",
@@ -164,9 +163,7 @@
164
  },
165
  {
166
  "name": "f32_scalar_tail_4095",
167
- "provenance": {
168
- "notes": "Compact sibling for the large scalar-fallback Round benchmark; odd numel forces the non-vec4 elementwise path over a sustained fractional range."
169
- },
170
  "inputs": {
171
  "x": {
172
  "dtype": "float32",
 
1
  {
 
2
  "cases": [
3
  {
4
  "name": "ties_to_even",
 
163
  },
164
  {
165
  "name": "f32_scalar_tail_4095",
166
+ "provenance": { "notes": "An odd element count exercises scalar Round over a sustained fractional range." },
 
 
167
  "inputs": {
168
  "x": {
169
  "dtype": "float32",
build/webgpu/unary-scalar.wgsl.jinja CHANGED
@@ -1,21 +1,32 @@
1
  {% macro flat_tail_open() %}
2
  @compute @workgroup_size({{ tunables.WORKGROUP_SIZE }})
3
- fn main(@builtin(global_invocation_id) gid: vec3<u32>, @builtin(num_workgroups) nwg: vec3<u32>) {
4
  // 2D-folded flat index: gid.y carries the high bits when the element count exceeds the
5
- // maxComputeWorkgroupsPerDimension limit (the dispatch caps x and spills the rest into y).
6
- let invocation = gid.x + gid.y * nwg.x * {{ tunables.WORKGROUP_SIZE }}u;
7
  // Tail-safe scalar x4 keeps vector-like dispatch density without requiring
8
  // the logical tensor length (or its storage binding) to be vec4 aligned.
9
- let begin = invocation * {{ source.itemsPerInvocation }}u;
10
- let end = min(begin + {{ source.itemsPerInvocation }}u, params.count);
 
 
 
 
 
 
 
 
 
 
 
11
  for (var i = begin; i < end; i = i + 1u) {
12
  {%- endmacro %}
13
  {% macro flat_tail_close() %}
14
  }
15
  {% endmacro %}
16
 
17
- // Scalar unary fallback. Each branch retains the operation's numeric hardening,
18
- // including Payne-Hanek trigonometric range reduction and NaN/overflow guards.
19
  {% if usesF16 %}
20
  enable f16;
21
  {% endif %}
 
1
  {% macro flat_tail_open() %}
2
  @compute @workgroup_size({{ tunables.WORKGROUP_SIZE }})
3
+ fn main(@builtin(global_invocation_id) gid: vec3<u32>) {
4
  // 2D-folded flat index: gid.y carries the high bits when the element count exceeds the
5
+ // dispatch's per-axis workgroup fold width (the dispatch caps x and spills the rest into y).
6
+ let invocation = gid.x + gid.y * {{ DISPATCH_FOLD_WIDTH }}u * {{ tunables.WORKGROUP_SIZE }}u;
7
  // Tail-safe scalar x4 keeps vector-like dispatch density without requiring
8
  // the logical tensor length (or its storage binding) to be vec4 aligned.
9
+ {% set itemsPerInvocation = itemsPerInvocation if itemsPerInvocation is defined else 4 %}
10
+ {% if tailOnly is defined and tailOnly %}
11
+ // Tail of a vec4 bulk pass: lane zero alone covers the elements the packed
12
+ // pass left behind, from the last multiple of the item count to the end.
13
+ if (invocation != 0u) {
14
+ return;
15
+ }
16
+ let begin = params.count - params.count % {{ itemsPerInvocation }}u;
17
+ let end = params.count;
18
+ {% else %}
19
+ let begin = invocation * {{ itemsPerInvocation }}u;
20
+ let end = min(begin + {{ itemsPerInvocation }}u, params.count);
21
+ {% endif %}
22
  for (var i = begin; i < end; i = i + 1u) {
23
  {%- endmacro %}
24
  {% macro flat_tail_close() %}
25
  }
26
  {% endmacro %}
27
 
28
+ // Scalar unary elementwise implementation. Specialization emits only the
29
+ // selected operation and any numerical helper it requires.
30
  {% if usesF16 %}
31
  enable f16;
32
  {% endif %}
build/webgpu/unary-vec4.wgsl.jinja CHANGED
@@ -1,8 +1,5 @@
1
- // Loads and stores vec4<T> (128 bits) while retaining scalar per-component
2
- // arithmetic, including per-component helper calls for guard-heavy operations.
3
- {% if usesF16 %}
4
- enable f16;
5
- {% endif %}
6
  {{ env.wgsl.resourceDeclarations }}
7
 
8
  {% macro emit_round_half_to_even() %}
@@ -21,15 +18,37 @@ fn round_half_to_even(v: f32) -> f32 {
21
  }{% endmacro %}
22
  {{ emit_round_half_to_even() }}
23
 
 
 
 
 
 
24
  @compute @workgroup_size({{ tunables.WORKGROUP_SIZE }})
25
- fn main(@builtin(global_invocation_id) gid: vec3<u32>, @builtin(num_workgroups) nwg: vec3<u32>) {
26
  // 2D-folded flat index: gid.y carries the high bits when the element count exceeds the
27
- // maxComputeWorkgroupsPerDimension limit (the dispatch caps x and spills the rest into y).
28
- let i = gid.x + gid.y * nwg.x * {{ tunables.WORKGROUP_SIZE }}u;
 
 
 
 
 
 
 
 
 
 
 
 
29
  if (i >= params.count) {
30
  return;
31
  }
 
 
32
  let xv = x[i];
33
  let fv = vec4<f32>(xv);
34
  y[i] = {{ vectorScalar }}(vec4<f32>(round_half_to_even(fv.x), round_half_to_even(fv.y), round_half_to_even(fv.z), round_half_to_even(fv.w)));
 
 
 
35
  }
 
1
+ // Loads and stores vec4<T> while evaluating the selected unary operation per
2
+ // component.
 
 
 
3
  {{ env.wgsl.resourceDeclarations }}
4
 
5
  {% macro emit_round_half_to_even() %}
 
18
  }{% endmacro %}
19
  {{ emit_round_half_to_even() }}
20
 
21
+ {% set vec4PerThread = vec4PerThread %}
22
+ {% if vec4PerThread > 1 %}
23
+ const ITEMS: u32 = {{ vec4PerThread }}u;
24
+ {% endif %}
25
+
26
  @compute @workgroup_size({{ tunables.WORKGROUP_SIZE }})
27
+ fn main(@builtin(global_invocation_id) gid: vec3<u32>) {
28
  // 2D-folded flat index: gid.y carries the high bits when the element count exceeds the
29
+ // per-axis dispatch fold width (the dispatch caps x and spills the rest into y).
30
+ {% if vec4PerThread > 1 %}
31
+ // Each invocation walks ITEMS vec4 groups a span apart. Consecutive lanes
32
+ // access consecutive words on every step, while each lane can keep several
33
+ // independent loads in flight.
34
+ let tid = gid.x + gid.y * {{ DISPATCH_FOLD_WIDTH }}u * {{ tunables.WORKGROUP_SIZE }}u;
35
+ let span = (params.count + ITEMS - 1u) / ITEMS;
36
+ for (var j = 0u; j < ITEMS; j = j + 1u) {
37
+ let i = tid + j * span;
38
+ if (i >= params.count) {
39
+ break;
40
+ }
41
+ {% else %}
42
+ let i = gid.x + gid.y * {{ DISPATCH_FOLD_WIDTH }}u * {{ tunables.WORKGROUP_SIZE }}u;
43
  if (i >= params.count) {
44
  return;
45
  }
46
+ {% endif %}
47
+
48
  let xv = x[i];
49
  let fv = vec4<f32>(xv);
50
  y[i] = {{ vectorScalar }}(vec4<f32>(round_half_to_even(fv.x), round_half_to_even(fv.y), round_half_to_even(fv.z), round_half_to_even(fv.w)));
51
+ {% if vec4PerThread > 1 %}
52
+ }
53
+ {% endif %}
54
  }