Xenova HF Staff commited on
Commit
5340f3e
·
verified ·
1 Parent(s): 75d3ab2

sync 91d990483a17

Browse files
README.md CHANGED
@@ -18,15 +18,15 @@ See the [ONNX `Softplus` spec](https://onnx.ai/onnx/operators/onnx__Softplus.htm
18
 
19
  ## Inputs
20
 
21
- | Name | Bind key | Logical dtype | Rank | Shape | Description | Presence |
22
  | --- | --- | --- | --- | --- | --- | --- |
23
- | `X` | `x` | `T` | — | — | Values transformed elementwise by the smooth softplus activation. | 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 softplus applied elementwise; same shape as `X`. | required |
30
 
31
  ## Type constraints
32
 
@@ -36,7 +36,7 @@ See the [ONNX `Softplus` spec](https://onnx.ai/onnx/operators/onnx__Softplus.htm
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 `Softplus` spec](https://onnx.ai/onnx/operators/onnx__Softplus.htm
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` | — | — | Values transformed elementwise by the smooth softplus activation. | 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 softplus applied elementwise; same shape as `X`. | 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.Softplus",
3
  "cases": [
4
  {
5
  "name": "1m_f32",
 
1
  {
 
2
  "cases": [
3
  {
4
  "name": "1m_f32",
build/webgpu/manifest.json CHANGED
@@ -2,30 +2,16 @@
2
  "domain": "ai.onnx",
3
  "name": "Softplus",
4
  "sinceVersion": 1,
5
- "description": "Applies the softplus activation elementwise: `y = ln(exp(x) + 1)`. The output has the same shape as the input.",
6
- "inputs": [
7
- { "role": "X", "dtype": "T", "description": "Values transformed elementwise by the smooth softplus activation." }
8
- ],
9
- "outputs": [
10
- {
11
- "role": "Y",
12
- "dtype": "T",
13
- "rank": "ranks.X",
14
- "description": "Output tensor with softplus applied elementwise; same shape as `X`.",
15
- "shape": "shapes.X"
16
- }
17
- ],
18
  "typeConstraints": { "T": ["float32", "float16"] },
19
- "args": {
20
- "x": { "kind": "tensor", "semantic": "X", "role": "input" },
21
- "y": { "kind": "tensor", "semantic": "Y", "role": "output" }
22
- },
23
- "tunables": { "WORKGROUP_SIZE": 256 },
24
  "variants": [
25
  {
26
  "id": "same_layout_vec4",
 
27
  "when": ["numel(shapes.x) > 0", "numel(shapes.x) % 4 == 0", "numel(shapes.x) == numel(shapes.y)", "f16Ok(dtypes.T)"],
28
- "constants": {
29
  "scalar": "dtypes.T",
30
  "usesF16": "dtypes.T == \"f16\"",
31
  "vectorScalar": "\"vec4<\" ~ dtypes.T ~ \">\""
@@ -34,47 +20,103 @@
34
  {
35
  "id": "main",
36
  "name": "Softplus.vec4",
37
- "source": { "shader": "unary-vec4.wgsl.jinja", "inputs": { "op": "\"softplus\"" } },
38
- "bindings": [
39
- { "name": "x", "arg": "x", "buffer": { "type": "read-only-storage" }, "elementType": "$vectorScalar" },
40
- { "name": "y", "arg": "y", "buffer": { "type": "storage" }, "elementType": "$vectorScalar" },
41
- {
42
- "name": "params",
43
- "semantic": "kernel.params",
44
- "buffer": { "type": "uniform" },
45
- "struct": {
46
- "name": "Params",
47
- "fields": [{ "name": "count", "type": "u32", "value": "numel(shapes.y) / 4" }]
48
- }
49
- }
50
- ],
51
- "dispatch": { "threads": "numel(shapes.y) / 4", "workgroupSize": "tunables.WORKGROUP_SIZE" }
52
  }
53
- ],
54
- "priority": 20
55
  },
56
  {
57
  "id": "elementwise",
58
  "when": ["numel(shapes.x) == numel(shapes.y)", "f16Ok(dtypes.T)"],
59
- "constants": { "scalar": "dtypes.T", "usesF16": "dtypes.T == \"f16\"" },
60
  "passes": [
61
  {
62
  "id": "main",
63
  "name": "Softplus",
64
- "source": { "shader": "unary-scalar.wgsl.jinja", "inputs": { "op": "\"softplus\"", "itemsPerInvocation": 4 } },
65
- "bindings": [
66
- { "name": "x", "arg": "x", "buffer": { "type": "read-only-storage" }, "elementType": "$scalar" },
67
- { "name": "y", "arg": "y", "buffer": { "type": "storage" }, "elementType": "$scalar" },
68
- {
69
- "name": "params",
70
- "semantic": "kernel.params",
71
- "buffer": { "type": "uniform" },
72
- "struct": { "name": "Params", "fields": [{ "name": "count", "type": "u32", "value": "numel(shapes.y)" }] }
73
- }
74
- ],
75
- "dispatch": { "threads": "ceilDiv(numel(shapes.y), 4)", "workgroupSize": "tunables.WORKGROUP_SIZE" }
76
  }
77
  ]
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
78
  }
79
- ]
80
  }
 
2
  "domain": "ai.onnx",
3
  "name": "Softplus",
4
  "sinceVersion": 1,
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": "Softplus.vec4",
23
+ "shader": "unary-vec4.wgsl.jinja",
24
+ "derive": {
25
+ "op": "\"softplus\"",
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": "Softplus",
45
+ "shader": "unary-scalar.wgsl.jinja",
46
+ "derive": { "op": "\"softplus\"", "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": "Softplus.vec4Bulk",
69
+ "shader": "unary-vec4.wgsl.jinja",
70
+ "derive": {
71
+ "op": "\"softplus\"",
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": "Softplus.tail",
84
+ "shader": "unary-scalar.wgsl.jinja",
85
+ "derive": { "op": "\"softplus\"", "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.Softplus",
3
- "id": "_ai_onnx_softplus_webgpu_ef21ab2",
4
  "version": 1,
5
  "license": "Apache-2.0",
6
  "backend": { "type": "webgpu" },
7
  "digest": {
8
  "algorithm": "sha256",
9
  "files": {
10
- "bench.json": "tlYCCPu78ZtIpxVmMV4qReJFTW2N1wTBPyYhkK7WrDc=",
11
- "manifest.json": "4xpCC6+qT1khNxgVa4uNS/idV9SJ16S2kXSorFox1Ag=",
12
- "test.json": "uXlEurXcHVZtkfsjNrzO2xzmskC049RqywccYpooB7w=",
13
- "unary-scalar.wgsl.jinja": "ovYCHDPxbtSPhqAHIlBpqk31JktAcJsteDn1qtkeaDg=",
14
- "unary-vec4.wgsl.jinja": "5CwSPN+M7k2FzFB558XA+Ld2lj/lyVJigL7YAZvZf0M="
15
  }
16
  },
17
- "provenance": { "kernel": { "sha": "2e7068faf55e7f43df740015f6d1ee49391a41c5", "dirty": false } },
18
- "webgpu": { "manifestSpec": "1.0", "specialized": true, "opPath": "ops/ai.onnx.Softplus" }
 
 
 
 
 
 
 
19
  }
 
1
  {
2
  "name": "ai.onnx.Softplus",
3
+ "id": "_ai_onnx_softplus_webgpu_b469e0f",
4
  "version": 1,
5
  "license": "Apache-2.0",
6
  "backend": { "type": "webgpu" },
7
  "digest": {
8
  "algorithm": "sha256",
9
  "files": {
10
+ "bench.json": "mkmdJjYz59jONtwNKYEziTe5Lm9kEiwf3kFFLKBdOp4=",
11
+ "manifest.json": "aCHo4wuGXtA6LlIKnQfRxEthv4n8dr5cevNBlAFT/5E=",
12
+ "test.json": "T671WTaU4UEK8e/RLc8PRBhFsHu2dp9fIzNqCROpr4M=",
13
+ "unary-scalar.wgsl.jinja": "hrIOCeU5eTtNJyqrJ25ccbIWNQxLRe+T9TCAb2oucW8=",
14
+ "unary-vec4.wgsl.jinja": "oQHYtByBE/SSMn9Zq5og2N7LggCR/IzbecjcLKaHuR4="
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.Softplus",
3
  "cases": [
4
  {
5
  "name": "f32_values",
@@ -62,7 +61,7 @@
62
  "provenance": {
63
  "source": "onnxruntime/test/providers/cpu/activation/activation_op_test.cc",
64
  "test": "ActivationOpTest.Softplus",
65
- "notes": "Scalar-path companion: large negative inputs produce a valid subnormal Softplus tail."
66
  },
67
  "inputs": {
68
  "x": { "dtype": "float32", "shape": [3], "data": { "kind": "values", "values": [-90.0, -95.0, -100.0] } }
 
1
  {
 
2
  "cases": [
3
  {
4
  "name": "f32_values",
 
61
  "provenance": {
62
  "source": "onnxruntime/test/providers/cpu/activation/activation_op_test.cc",
63
  "test": "ActivationOpTest.Softplus",
64
+ "notes": "Scalar Softplus maps large negative inputs to valid subnormal tail values."
65
  },
66
  "inputs": {
67
  "x": { "dtype": "float32", "shape": [3], "data": { "kind": "values", "values": [-90.0, -95.0, -100.0] } }
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_log1p_small_positive() %}
@@ -27,15 +24,37 @@ const SOFTPLUS_LOG1P_SERIES_THRESHOLD: f32 = {% if usesF16 %}-4.0{% else %}-8.0{
27
 
28
  {{ emit_softplus() }}
29
 
 
 
 
 
 
30
  @compute @workgroup_size({{ tunables.WORKGROUP_SIZE }})
31
- fn main(@builtin(global_invocation_id) gid: vec3<u32>, @builtin(num_workgroups) nwg: vec3<u32>) {
32
  // 2D-folded flat index: gid.y carries the high bits when the element count exceeds the
33
- // maxComputeWorkgroupsPerDimension limit (the dispatch caps x and spills the rest into y).
34
- let i = gid.x + gid.y * nwg.x * {{ tunables.WORKGROUP_SIZE }}u;
 
 
 
 
 
 
 
 
 
 
 
 
35
  if (i >= params.count) {
36
  return;
37
  }
 
 
38
  let xv = x[i];
39
  let fv = vec4<f32>(xv);
40
  y[i] = {{ vectorScalar }}(vec4<f32>(softplus(fv.x), softplus(fv.y), softplus(fv.z), softplus(fv.w)));
 
 
 
41
  }
 
1
+ // Loads and stores vec4<T> while evaluating the selected unary operation per
2
+ // component.
 
 
 
3
  {{ env.wgsl.resourceDeclarations }}
4
 
5
  {% macro emit_log1p_small_positive() %}
 
24
 
25
  {{ emit_softplus() }}
26
 
27
+ {% set vec4PerThread = vec4PerThread %}
28
+ {% if vec4PerThread > 1 %}
29
+ const ITEMS: u32 = {{ vec4PerThread }}u;
30
+ {% endif %}
31
+
32
  @compute @workgroup_size({{ tunables.WORKGROUP_SIZE }})
33
+ fn main(@builtin(global_invocation_id) gid: vec3<u32>) {
34
  // 2D-folded flat index: gid.y carries the high bits when the element count exceeds the
35
+ // per-axis dispatch fold width (the dispatch caps x and spills the rest into y).
36
+ {% if vec4PerThread > 1 %}
37
+ // Each invocation walks ITEMS vec4 groups a span apart. Consecutive lanes
38
+ // access consecutive words on every step, while each lane can keep several
39
+ // independent loads in flight.
40
+ let tid = gid.x + gid.y * {{ DISPATCH_FOLD_WIDTH }}u * {{ tunables.WORKGROUP_SIZE }}u;
41
+ let span = (params.count + ITEMS - 1u) / ITEMS;
42
+ for (var j = 0u; j < ITEMS; j = j + 1u) {
43
+ let i = tid + j * span;
44
+ if (i >= params.count) {
45
+ break;
46
+ }
47
+ {% else %}
48
+ let i = gid.x + gid.y * {{ DISPATCH_FOLD_WIDTH }}u * {{ tunables.WORKGROUP_SIZE }}u;
49
  if (i >= params.count) {
50
  return;
51
  }
52
+ {% endif %}
53
+
54
  let xv = x[i];
55
  let fv = vec4<f32>(xv);
56
  y[i] = {{ vectorScalar }}(vec4<f32>(softplus(fv.x), softplus(fv.y), softplus(fv.z), softplus(fv.w)));
57
+ {% if vec4PerThread > 1 %}
58
+ }
59
+ {% endif %}
60
  }