sync 91d990483a17
Browse files- README.md +12 -8
- build/webgpu/bench.json +14 -1
- build/webgpu/binary-broadcast-vec4.wgsl.jinja +33 -37
- build/webgpu/binary-broadcast.wgsl.jinja +20 -16
- build/webgpu/binary-vec4.wgsl.jinja +37 -8
- build/webgpu/manifest.json +148 -186
- build/webgpu/metadata.json +19 -9
- build/webgpu/test.json +41 -4
README.md
CHANGED
|
@@ -18,16 +18,16 @@ See the [ONNX `Add` spec](https://onnx.ai/onnx/operators/onnx__Add.html) for the
|
|
| 18 |
|
| 19 |
## Inputs
|
| 20 |
|
| 21 |
-
| Name |
|
| 22 |
| --- | --- | --- | --- | --- | --- | --- |
|
| 23 |
-
| `
|
| 24 |
-
| `
|
| 25 |
|
| 26 |
## Outputs
|
| 27 |
|
| 28 |
-
| Name |
|
| 29 |
| --- | --- | --- | --- | --- | --- | --- |
|
| 30 |
-
| `
|
| 31 |
|
| 32 |
## Type constraints
|
| 33 |
|
|
@@ -37,7 +37,7 @@ See the [ONNX `Add` spec](https://onnx.ai/onnx/operators/onnx__Add.html) for the
|
|
| 37 |
|
| 38 |
## Files
|
| 39 |
|
| 40 |
-
- [`metadata.json`](build/webgpu/metadata.json) — kernel metadata (id, digests, provenance)
|
| 41 |
- [`manifest.json`](build/webgpu/manifest.json) — the op contract (source of truth)
|
| 42 |
- [`test.json`](build/webgpu/test.json) — correctness cases
|
| 43 |
- [`bench.json`](build/webgpu/bench.json) — benchmark + tuning cases
|
|
@@ -47,10 +47,14 @@ See the [ONNX `Add` spec](https://onnx.ai/onnx/operators/onnx__Add.html) for the
|
|
| 47 |
|
| 48 |
## Use with `@huggingface/kernels`
|
| 49 |
|
| 50 |
-
|
| 51 |
-
|
|
|
|
|
|
|
|
|
|
| 52 |
|
| 53 |
The `version: 1` option selects the published kernel contract; it is independent of any operator opset, contrib `since_version`, or model version.
|
|
|
|
| 54 |
|
| 55 |
Replace each `*Data` placeholder with a typed array containing the corresponding input data.
|
| 56 |
|
|
|
|
| 18 |
|
| 19 |
## Inputs
|
| 20 |
|
| 21 |
+
| Name | Upstream name | Logical dtype | Rank | Shape | Description | Presence |
|
| 22 |
| --- | --- | --- | --- | --- | --- | --- |
|
| 23 |
+
| `a` | `A` | `T` | — | — | First operand. | required |
|
| 24 |
+
| `b` | `B` | `T` | — | — | Second operand. | required |
|
| 25 |
|
| 26 |
## Outputs
|
| 27 |
|
| 28 |
+
| Name | Upstream name | Logical dtype | Rank | Shape | Description | Presence |
|
| 29 |
| --- | --- | --- | --- | --- | --- | --- |
|
| 30 |
+
| `c` | `C` | `T` | derived | broadcast result of `a` and `b` | Elementwise sum of `A` and `B`; has the same element type as the inputs. | required |
|
| 31 |
|
| 32 |
## Type constraints
|
| 33 |
|
|
|
|
| 37 |
|
| 38 |
## Files
|
| 39 |
|
| 40 |
+
- [`metadata.json`](build/webgpu/metadata.json) — kernel metadata (id, digests, per-variant templates, provenance)
|
| 41 |
- [`manifest.json`](build/webgpu/manifest.json) — the op contract (source of truth)
|
| 42 |
- [`test.json`](build/webgpu/test.json) — correctness cases
|
| 43 |
- [`bench.json`](build/webgpu/bench.json) — benchmark + tuning cases
|
|
|
|
| 47 |
|
| 48 |
## Use with `@huggingface/kernels`
|
| 49 |
|
| 50 |
+
```sh
|
| 51 |
+
npm install --save-exact @huggingface/kernels@0.0.1-preview.2
|
| 52 |
+
```
|
| 53 |
+
|
| 54 |
+
Required output shapes and logical data types are inferred from the supplied inputs and attributes; result tensors are allocated automatically.
|
| 55 |
|
| 56 |
The `version: 1` option selects the published kernel contract; it is independent of any operator opset, contrib `since_version`, or model version.
|
| 57 |
+
It follows the `v1` branch as fixes land. To pin exact artifact bytes, pass a 40-character commit `revision` instead of `version`.
|
| 58 |
|
| 59 |
Replace each `*Data` placeholder with a typed array containing the corresponding input data.
|
| 60 |
|
build/webgpu/bench.json
CHANGED
|
@@ -1,5 +1,4 @@
|
|
| 1 |
{
|
| 2 |
-
"op": "ai.onnx.Add",
|
| 3 |
"tunableSpace": { "WORKGROUP_SIZE": [64, 128, 256] },
|
| 4 |
"cases": [
|
| 5 |
{
|
|
@@ -16,6 +15,20 @@
|
|
| 16 |
"metrics": [{ "type": "bandwidth", "value": "args.count * dtypeBytes(args.dtype) * 3" }]
|
| 17 |
}
|
| 18 |
},
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 19 |
{
|
| 20 |
"name": "add-f32-biasadd-2048x2048",
|
| 21 |
"preset": "model",
|
|
|
|
| 1 |
{
|
|
|
|
| 2 |
"tunableSpace": { "WORKGROUP_SIZE": [64, 128, 256] },
|
| 3 |
"cases": [
|
| 4 |
{
|
|
|
|
| 15 |
"metrics": [{ "type": "bandwidth", "value": "args.count * dtypeBytes(args.dtype) * 3" }]
|
| 16 |
}
|
| 17 |
},
|
| 18 |
+
{
|
| 19 |
+
"name": "add-f32-8m-dram-bound",
|
| 20 |
+
"preset": "stress",
|
| 21 |
+
"vars": { "dtype": "float32", "count": 8388608 },
|
| 22 |
+
"inputs": {
|
| 23 |
+
"a": { "shape": [8388608], "dtype": "float32", "dist": "normal", "seed": 102, "scale": 2 },
|
| 24 |
+
"b": { "shape": [8388608], "dtype": "float32", "dist": "normal", "seed": 103, "scale": 2 }
|
| 25 |
+
},
|
| 26 |
+
"outputs": { "c": { "shape": [8388608], "dtype": "float32" } },
|
| 27 |
+
"bench": { "metrics": [{ "type": "bandwidth", "value": "args.count * dtypeBytes(args.dtype) * 3" }] },
|
| 28 |
+
"provenance": {
|
| 29 |
+
"notes": "A 32 MB output lies beyond the 16 MB threshold where the vec4 kernel changes from four groups per lane to one, exercising the large-output DRAM-bound configuration."
|
| 30 |
+
}
|
| 31 |
+
},
|
| 32 |
{
|
| 33 |
"name": "add-f32-biasadd-2048x2048",
|
| 34 |
"preset": "model",
|
build/webgpu/binary-broadcast-vec4.wgsl.jinja
CHANGED
|
@@ -42,14 +42,10 @@ fn {{ fn_name }}({% if out_numel != 0 and op_numel != 1 %}out_index: u32{% endif
|
|
| 42 |
{{ fn_name }}({% if out_numel.value != 0 and op_numel.value != 1 %}{{ out_index }}{% endif %})
|
| 43 |
{%- endmacro %}
|
| 44 |
|
| 45 |
-
{% if usesF16 %}
|
| 46 |
-
enable f16;
|
| 47 |
-
{% endif %}
|
| 48 |
{{ env.wgsl.resourceDeclarations }}
|
| 49 |
|
| 50 |
-
// Vec4 broadcast binary op.
|
| 51 |
-
//
|
| 52 |
-
// thread writes a vec4 of the output. If the output's innermost axis is a
|
| 53 |
// multiple of four, each operand uses one base offset. For an
|
| 54 |
// odd innermost extent, a vec4 may cross a row boundary: same-shape operands
|
| 55 |
// remain contiguous, while broadcast operands compute the four lane offsets
|
|
@@ -63,36 +59,36 @@ enable f16;
|
|
| 63 |
// operand is vector-bound and loaded directly; broadcast operands remain
|
| 64 |
// scalar-bound so their independent lane offsets stay addressable.
|
| 65 |
{% set a_numel = namespace(value=1) %}
|
| 66 |
-
{% for d in
|
| 67 |
{% set a_numel.value = a_numel.value * d %}
|
| 68 |
{% endfor %}
|
| 69 |
{% set b_numel = namespace(value=1) %}
|
| 70 |
-
{% for d in
|
| 71 |
{% set b_numel.value = b_numel.value * d %}
|
| 72 |
{% endfor %}
|
| 73 |
{% set c_numel = namespace(value=1) %}
|
| 74 |
-
{% for d in
|
| 75 |
{% set c_numel.value = c_numel.value * d %}
|
| 76 |
{% endfor %}
|
| 77 |
-
{% set a_same = namespace(value=(
|
| 78 |
{% if a_same.value %}
|
| 79 |
-
{% for axis in range(
|
| 80 |
-
{% if
|
| 81 |
{% set a_same.value = false %}
|
| 82 |
{% endif %}
|
| 83 |
{% endfor %}
|
| 84 |
{% endif %}
|
| 85 |
-
{% set b_same = namespace(value=(
|
| 86 |
{% if b_same.value %}
|
| 87 |
-
{% for axis in range(
|
| 88 |
-
{% if
|
| 89 |
{% set b_same.value = false %}
|
| 90 |
{% endif %}
|
| 91 |
{% endfor %}
|
| 92 |
{% endif %}
|
| 93 |
-
{% set a_inner =
|
| 94 |
-
{% set b_inner =
|
| 95 |
-
{% set c_inner =
|
| 96 |
{% set crosses_inner_rows = c_inner % 4 != 0 %}
|
| 97 |
{% if a_numel.value == 1 %}{% set a_mode = "scalar" %}
|
| 98 |
{% elif a_inner == 1 %}{% set a_mode = "splat" %}
|
|
@@ -102,31 +98,31 @@ enable f16;
|
|
| 102 |
{% else %}{% set b_mode = "contig" %}{% endif %}
|
| 103 |
|
| 104 |
{% if not a_same.value and a_mode != "scalar" %}
|
| 105 |
-
{{ offset_fn("a_offset",
|
| 106 |
{% endif %}
|
| 107 |
|
| 108 |
{% if not b_same.value and b_mode != "scalar" %}
|
| 109 |
-
{{ offset_fn("b_offset",
|
| 110 |
{% endif %}
|
| 111 |
|
| 112 |
{% set is_int = scalar == "i32" or scalar == "u32" %}
|
| 113 |
{% set acc = scalar if is_int else "f32" %}
|
| 114 |
// Narrow integer operations wrap modulo the logical dtype width; int8/uint8
|
| 115 |
// use i32/u32 storage.
|
| 116 |
-
{% if
|
| 117 |
fn wrap_dtype(v: vec4<i32>) -> vec4<i32> { return (v << vec4<u32>(24u)) >> vec4<u32>(24u); }
|
| 118 |
{% set wrap = "wrap_dtype" %}
|
| 119 |
-
{% elif
|
| 120 |
fn wrap_dtype(v: vec4<u32>) -> vec4<u32> { return v & vec4<u32>(0xFFu); }
|
| 121 |
{% set wrap = "wrap_dtype" %}
|
| 122 |
{% else %}
|
| 123 |
{% set wrap = "" %}
|
| 124 |
{% endif %}
|
| 125 |
@compute @workgroup_size({{ tunables.WORKGROUP_SIZE }})
|
| 126 |
-
fn main(@builtin(global_invocation_id) gid: vec3<u32>
|
| 127 |
// 2D-folded flat index: gid.y carries the high bits when the element count exceeds the
|
| 128 |
-
//
|
| 129 |
-
let i4 = gid.x + gid.y *
|
| 130 |
if (i4 >= params.count) {
|
| 131 |
return;
|
| 132 |
}
|
|
@@ -140,15 +136,15 @@ fn main(@builtin(global_invocation_id) gid: vec3<u32>, @builtin(num_workgroups)
|
|
| 140 |
let av = vec4<{{ acc }}>({{ acc }}(a[0]));
|
| 141 |
{% elif crosses_inner_rows %}
|
| 142 |
let av = vec4<{{ acc }}>(
|
| 143 |
-
{{ acc }}(a[{{ broadcast_offset_call("a_offset",
|
| 144 |
-
{{ acc }}(a[{{ broadcast_offset_call("a_offset",
|
| 145 |
-
{{ acc }}(a[{{ broadcast_offset_call("a_offset",
|
| 146 |
-
{{ acc }}(a[{{ broadcast_offset_call("a_offset",
|
| 147 |
);
|
| 148 |
{% elif a_mode == "splat" %}
|
| 149 |
-
let av = vec4<{{ acc }}>({{ acc }}(a[{{ broadcast_offset_call("a_offset",
|
| 150 |
{% else %}
|
| 151 |
-
let ao = {{ broadcast_offset_call("a_offset",
|
| 152 |
let av = vec4<{{ acc }}>({{ acc }}(a[ao]), {{ acc }}(a[ao + 1u]), {{ acc }}(a[ao + 2u]), {{ acc }}(a[ao + 3u]));
|
| 153 |
{% endif %}
|
| 154 |
{% if b_same.value %}
|
|
@@ -157,15 +153,15 @@ fn main(@builtin(global_invocation_id) gid: vec3<u32>, @builtin(num_workgroups)
|
|
| 157 |
let bv = vec4<{{ acc }}>({{ acc }}(b[0]));
|
| 158 |
{% elif crosses_inner_rows %}
|
| 159 |
let bv = vec4<{{ acc }}>(
|
| 160 |
-
{{ acc }}(b[{{ broadcast_offset_call("b_offset",
|
| 161 |
-
{{ acc }}(b[{{ broadcast_offset_call("b_offset",
|
| 162 |
-
{{ acc }}(b[{{ broadcast_offset_call("b_offset",
|
| 163 |
-
{{ acc }}(b[{{ broadcast_offset_call("b_offset",
|
| 164 |
);
|
| 165 |
{% elif b_mode == "splat" %}
|
| 166 |
-
let bv = vec4<{{ acc }}>({{ acc }}(b[{{ broadcast_offset_call("b_offset",
|
| 167 |
{% else %}
|
| 168 |
-
let bo = {{ broadcast_offset_call("b_offset",
|
| 169 |
let bv = vec4<{{ acc }}>({{ acc }}(b[bo]), {{ acc }}(b[bo + 1u]), {{ acc }}(b[bo + 2u]), {{ acc }}(b[bo + 3u]));
|
| 170 |
{% endif %}
|
| 171 |
c[i4] = {{ wrap }}(vec4<{{ scalar }}>(av + bv));
|
|
|
|
| 42 |
{{ fn_name }}({% if out_numel.value != 0 and op_numel.value != 1 %}{{ out_index }}{% endif %})
|
| 43 |
{%- endmacro %}
|
| 44 |
|
|
|
|
|
|
|
|
|
|
| 45 |
{{ env.wgsl.resourceDeclarations }}
|
| 46 |
|
| 47 |
+
// Vec4 broadcast binary op. Offsets use compile-time strides, and each
|
| 48 |
+
// invocation writes four output values. If the output's innermost axis is a
|
|
|
|
| 49 |
// multiple of four, each operand uses one base offset. For an
|
| 50 |
// odd innermost extent, a vec4 may cross a row boundary: same-shape operands
|
| 51 |
// remain contiguous, while broadcast operands compute the four lane offsets
|
|
|
|
| 59 |
// operand is vector-bound and loaded directly; broadcast operands remain
|
| 60 |
// scalar-bound so their independent lane offsets stay addressable.
|
| 61 |
{% set a_numel = namespace(value=1) %}
|
| 62 |
+
{% for d in aShape %}
|
| 63 |
{% set a_numel.value = a_numel.value * d %}
|
| 64 |
{% endfor %}
|
| 65 |
{% set b_numel = namespace(value=1) %}
|
| 66 |
+
{% for d in bShape %}
|
| 67 |
{% set b_numel.value = b_numel.value * d %}
|
| 68 |
{% endfor %}
|
| 69 |
{% set c_numel = namespace(value=1) %}
|
| 70 |
+
{% for d in cShape %}
|
| 71 |
{% set c_numel.value = c_numel.value * d %}
|
| 72 |
{% endfor %}
|
| 73 |
+
{% set a_same = namespace(value=(aRank == cRank)) %}
|
| 74 |
{% if a_same.value %}
|
| 75 |
+
{% for axis in range(cRank) %}
|
| 76 |
+
{% if aShape[axis] != cShape[axis] %}
|
| 77 |
{% set a_same.value = false %}
|
| 78 |
{% endif %}
|
| 79 |
{% endfor %}
|
| 80 |
{% endif %}
|
| 81 |
+
{% set b_same = namespace(value=(bRank == cRank)) %}
|
| 82 |
{% if b_same.value %}
|
| 83 |
+
{% for axis in range(cRank) %}
|
| 84 |
+
{% if bShape[axis] != cShape[axis] %}
|
| 85 |
{% set b_same.value = false %}
|
| 86 |
{% endif %}
|
| 87 |
{% endfor %}
|
| 88 |
{% endif %}
|
| 89 |
+
{% set a_inner = aShape[aRank - 1] if aRank >= 1 else 1 %}
|
| 90 |
+
{% set b_inner = bShape[bRank - 1] if bRank >= 1 else 1 %}
|
| 91 |
+
{% set c_inner = cShape[cRank - 1] %}
|
| 92 |
{% set crosses_inner_rows = c_inner % 4 != 0 %}
|
| 93 |
{% if a_numel.value == 1 %}{% set a_mode = "scalar" %}
|
| 94 |
{% elif a_inner == 1 %}{% set a_mode = "splat" %}
|
|
|
|
| 98 |
{% else %}{% set b_mode = "contig" %}{% endif %}
|
| 99 |
|
| 100 |
{% if not a_same.value and a_mode != "scalar" %}
|
| 101 |
+
{{ offset_fn("a_offset", aShape, aRank, false, a_numel.value, cShape, cRank, c_numel.value) }}
|
| 102 |
{% endif %}
|
| 103 |
|
| 104 |
{% if not b_same.value and b_mode != "scalar" %}
|
| 105 |
+
{{ offset_fn("b_offset", bShape, bRank, false, b_numel.value, cShape, cRank, c_numel.value) }}
|
| 106 |
{% endif %}
|
| 107 |
|
| 108 |
{% set is_int = scalar == "i32" or scalar == "u32" %}
|
| 109 |
{% set acc = scalar if is_int else "f32" %}
|
| 110 |
// Narrow integer operations wrap modulo the logical dtype width; int8/uint8
|
| 111 |
// use i32/u32 storage.
|
| 112 |
+
{% if cDtype == "int8" %}
|
| 113 |
fn wrap_dtype(v: vec4<i32>) -> vec4<i32> { return (v << vec4<u32>(24u)) >> vec4<u32>(24u); }
|
| 114 |
{% set wrap = "wrap_dtype" %}
|
| 115 |
+
{% elif cDtype == "uint8" %}
|
| 116 |
fn wrap_dtype(v: vec4<u32>) -> vec4<u32> { return v & vec4<u32>(0xFFu); }
|
| 117 |
{% set wrap = "wrap_dtype" %}
|
| 118 |
{% else %}
|
| 119 |
{% set wrap = "" %}
|
| 120 |
{% endif %}
|
| 121 |
@compute @workgroup_size({{ tunables.WORKGROUP_SIZE }})
|
| 122 |
+
fn main(@builtin(global_invocation_id) gid: vec3<u32>) {
|
| 123 |
// 2D-folded flat index: gid.y carries the high bits when the element count exceeds the
|
| 124 |
+
// per-axis dispatch fold width (the dispatch caps x and spills the rest into y).
|
| 125 |
+
let i4 = gid.x + gid.y * {{ DISPATCH_FOLD_WIDTH }}u * {{ tunables.WORKGROUP_SIZE }}u;
|
| 126 |
if (i4 >= params.count) {
|
| 127 |
return;
|
| 128 |
}
|
|
|
|
| 136 |
let av = vec4<{{ acc }}>({{ acc }}(a[0]));
|
| 137 |
{% elif crosses_inner_rows %}
|
| 138 |
let av = vec4<{{ acc }}>(
|
| 139 |
+
{{ acc }}(a[{{ broadcast_offset_call("a_offset", aShape, cShape, "base") }}]),
|
| 140 |
+
{{ acc }}(a[{{ broadcast_offset_call("a_offset", aShape, cShape, "base + 1u") }}]),
|
| 141 |
+
{{ acc }}(a[{{ broadcast_offset_call("a_offset", aShape, cShape, "base + 2u") }}]),
|
| 142 |
+
{{ acc }}(a[{{ broadcast_offset_call("a_offset", aShape, cShape, "base + 3u") }}])
|
| 143 |
);
|
| 144 |
{% elif a_mode == "splat" %}
|
| 145 |
+
let av = vec4<{{ acc }}>({{ acc }}(a[{{ broadcast_offset_call("a_offset", aShape, cShape, "base") }}]));
|
| 146 |
{% else %}
|
| 147 |
+
let ao = {{ broadcast_offset_call("a_offset", aShape, cShape, "base") }};
|
| 148 |
let av = vec4<{{ acc }}>({{ acc }}(a[ao]), {{ acc }}(a[ao + 1u]), {{ acc }}(a[ao + 2u]), {{ acc }}(a[ao + 3u]));
|
| 149 |
{% endif %}
|
| 150 |
{% if b_same.value %}
|
|
|
|
| 153 |
let bv = vec4<{{ acc }}>({{ acc }}(b[0]));
|
| 154 |
{% elif crosses_inner_rows %}
|
| 155 |
let bv = vec4<{{ acc }}>(
|
| 156 |
+
{{ acc }}(b[{{ broadcast_offset_call("b_offset", bShape, cShape, "base") }}]),
|
| 157 |
+
{{ acc }}(b[{{ broadcast_offset_call("b_offset", bShape, cShape, "base + 1u") }}]),
|
| 158 |
+
{{ acc }}(b[{{ broadcast_offset_call("b_offset", bShape, cShape, "base + 2u") }}]),
|
| 159 |
+
{{ acc }}(b[{{ broadcast_offset_call("b_offset", bShape, cShape, "base + 3u") }}])
|
| 160 |
);
|
| 161 |
{% elif b_mode == "splat" %}
|
| 162 |
+
let bv = vec4<{{ acc }}>({{ acc }}(b[{{ broadcast_offset_call("b_offset", bShape, cShape, "base") }}]));
|
| 163 |
{% else %}
|
| 164 |
+
let bo = {{ broadcast_offset_call("b_offset", bShape, cShape, "base") }};
|
| 165 |
let bv = vec4<{{ acc }}>({{ acc }}(b[bo]), {{ acc }}(b[bo + 1u]), {{ acc }}(b[bo + 2u]), {{ acc }}(b[bo + 3u]));
|
| 166 |
{% endif %}
|
| 167 |
c[i4] = {{ wrap }}(vec4<{{ scalar }}>(av + bv));
|
build/webgpu/binary-broadcast.wgsl.jinja
CHANGED
|
@@ -1,13 +1,14 @@
|
|
| 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 |
-
//
|
| 6 |
-
let invocation = gid.x + gid.y *
|
| 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 |
-
|
| 10 |
-
let
|
|
|
|
| 11 |
for (var i = begin; i < end; i = i + 1u) {
|
| 12 |
{%- endmacro %}
|
| 13 |
{% macro flat_tail_close() %}
|
|
@@ -75,14 +76,17 @@ fn {{ fn_name }}({% if out_numel != 0 and op_numel != 1 %}out_index: u32{% endif
|
|
| 75 |
{% endif %}
|
| 76 |
{{ offset_fn(fn_name, opShape, opRank, op_same.value, op_numel.value, outShape, outRank, out_numel.value) }}
|
| 77 |
{%- endmacro %}{% macro binary_broadcast_offsets() %}
|
| 78 |
-
{
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 79 |
|
| 80 |
-
{{ broadcast_offset_fn("b_offset",
|
| 81 |
{%- endmacro %}
|
| 82 |
|
| 83 |
-
{% if usesF16 %}
|
| 84 |
-
enable f16;
|
| 85 |
-
{% endif %}
|
| 86 |
{{ env.wgsl.resourceDeclarations }}
|
| 87 |
|
| 88 |
|
|
@@ -90,21 +94,21 @@ enable f16;
|
|
| 90 |
|
| 91 |
{{ flat_tail_open() }}
|
| 92 |
{% if scalar == "i32" or scalar == "u32" %}
|
| 93 |
-
let av = a[{{ broadcast_offset_call("a_offset",
|
| 94 |
-
let bv = b[{{ broadcast_offset_call("b_offset",
|
| 95 |
let r = av + bv;
|
| 96 |
// Narrow integer operations wrap modulo the logical dtype width; int8/uint8
|
| 97 |
// use i32/u32 storage.
|
| 98 |
-
{% if
|
| 99 |
c[i] = (r << 24u) >> 24u;
|
| 100 |
-
{% elif
|
| 101 |
c[i] = r & 0xFFu;
|
| 102 |
{% else %}
|
| 103 |
c[i] = r;
|
| 104 |
{% endif %}
|
| 105 |
{% else %}
|
| 106 |
-
let av = f32(a[{{ broadcast_offset_call("a_offset",
|
| 107 |
-
let bv = f32(b[{{ broadcast_offset_call("b_offset",
|
| 108 |
c[i] = {{ scalar }}(av + bv);
|
| 109 |
{% endif %}
|
| 110 |
{{ flat_tail_close() -}}
|
|
|
|
| 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 |
+
let begin = invocation * {{ itemsPerInvocation }}u;
|
| 11 |
+
let end = min(begin + {{ itemsPerInvocation }}u, params.count);
|
| 12 |
for (var i = begin; i < end; i = i + 1u) {
|
| 13 |
{%- endmacro %}
|
| 14 |
{% macro flat_tail_close() %}
|
|
|
|
| 76 |
{% endif %}
|
| 77 |
{{ offset_fn(fn_name, opShape, opRank, op_same.value, op_numel.value, outShape, outRank, out_numel.value) }}
|
| 78 |
{%- endmacro %}{% macro binary_broadcast_offsets() %}
|
| 79 |
+
{% set aShape = aShape | default([]) %}
|
| 80 |
+
{% set aRank = aRank | default(0) %}
|
| 81 |
+
{% set bShape = bShape | default([]) %}
|
| 82 |
+
{% set bRank = bRank | default(0) %}
|
| 83 |
+
{% set cShape = cShape | default([]) %}
|
| 84 |
+
{% set cRank = cRank | default(0) %}
|
| 85 |
+
{{ broadcast_offset_fn("a_offset", aShape, aRank, cShape, cRank) }}
|
| 86 |
|
| 87 |
+
{{ broadcast_offset_fn("b_offset", bShape, bRank, cShape, cRank) }}
|
| 88 |
{%- endmacro %}
|
| 89 |
|
|
|
|
|
|
|
|
|
|
| 90 |
{{ env.wgsl.resourceDeclarations }}
|
| 91 |
|
| 92 |
|
|
|
|
| 94 |
|
| 95 |
{{ flat_tail_open() }}
|
| 96 |
{% if scalar == "i32" or scalar == "u32" %}
|
| 97 |
+
let av = a[{{ broadcast_offset_call("a_offset", aShape, cShape, "i") }}];
|
| 98 |
+
let bv = b[{{ broadcast_offset_call("b_offset", bShape, cShape, "i") }}];
|
| 99 |
let r = av + bv;
|
| 100 |
// Narrow integer operations wrap modulo the logical dtype width; int8/uint8
|
| 101 |
// use i32/u32 storage.
|
| 102 |
+
{% if cDtype == "int8" %}
|
| 103 |
c[i] = (r << 24u) >> 24u;
|
| 104 |
+
{% elif cDtype == "uint8" %}
|
| 105 |
c[i] = r & 0xFFu;
|
| 106 |
{% else %}
|
| 107 |
c[i] = r;
|
| 108 |
{% endif %}
|
| 109 |
{% else %}
|
| 110 |
+
let av = f32(a[{{ broadcast_offset_call("a_offset", aShape, cShape, "i") }}]);
|
| 111 |
+
let bv = f32(b[{{ broadcast_offset_call("b_offset", bShape, cShape, "i") }}]);
|
| 112 |
c[i] = {{ scalar }}(av + bv);
|
| 113 |
{% endif %}
|
| 114 |
{{ flat_tail_close() -}}
|
build/webgpu/binary-vec4.wgsl.jinja
CHANGED
|
@@ -1,25 +1,51 @@
|
|
| 1 |
-
{% if usesF16 %}
|
| 2 |
-
enable f16;
|
| 3 |
-
{% endif %}
|
| 4 |
{{ env.wgsl.resourceDeclarations }}
|
| 5 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 6 |
@compute @workgroup_size({{ tunables.WORKGROUP_SIZE }})
|
| 7 |
-
fn main(@builtin(global_invocation_id) gid: vec3<u32>
|
| 8 |
// 2D-folded flat index: gid.y carries the high bits when the element count exceeds the
|
| 9 |
-
//
|
| 10 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 11 |
if (i >= params.count) {
|
| 12 |
return;
|
| 13 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 14 |
let av = a[i];
|
|
|
|
|
|
|
|
|
|
|
|
|
| 15 |
let bv = b[i];
|
|
|
|
| 16 |
{% if scalar == "i32" or scalar == "u32" %}
|
| 17 |
let r = av + bv;
|
| 18 |
// Narrow integer operations wrap modulo the logical dtype width; int8/uint8
|
| 19 |
// use i32/u32 storage.
|
| 20 |
-
{% if
|
| 21 |
c[i] = (r << vec4<u32>(24u)) >> vec4<u32>(24u);
|
| 22 |
-
{% elif
|
| 23 |
c[i] = r & vec4<u32>(0xFFu);
|
| 24 |
{% else %}
|
| 25 |
c[i] = r;
|
|
@@ -29,4 +55,7 @@ fn main(@builtin(global_invocation_id) gid: vec3<u32>, @builtin(num_workgroups)
|
|
| 29 |
{% else %}
|
| 30 |
c[i] = av + bv;
|
| 31 |
{% endif %}
|
|
|
|
|
|
|
|
|
|
| 32 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
{{ env.wgsl.resourceDeclarations }}
|
| 2 |
|
| 3 |
+
{% set vec4PerThread = vec4PerThread %}
|
| 4 |
+
{% if vec4PerThread > 1 %}
|
| 5 |
+
const ITEMS: u32 = {{ vec4PerThread }}u;
|
| 6 |
+
{% endif %}
|
| 7 |
+
|
| 8 |
@compute @workgroup_size({{ tunables.WORKGROUP_SIZE }})
|
| 9 |
+
fn main(@builtin(global_invocation_id) gid: vec3<u32>) {
|
| 10 |
// 2D-folded flat index: gid.y carries the high bits when the element count exceeds the
|
| 11 |
+
// per-axis dispatch fold width (the dispatch caps x and spills the rest into y).
|
| 12 |
+
{% if vec4PerThread > 1 %}
|
| 13 |
+
// Each invocation walks ITEMS vec4 groups a span apart. Consecutive lanes
|
| 14 |
+
// access consecutive words on every step, while each lane can keep several
|
| 15 |
+
// independent loads in flight.
|
| 16 |
+
let tid = gid.x + gid.y * {{ DISPATCH_FOLD_WIDTH }}u * {{ tunables.WORKGROUP_SIZE }}u;
|
| 17 |
+
let span = (params.count + ITEMS - 1u) / ITEMS;
|
| 18 |
+
for (var j = 0u; j < ITEMS; j = j + 1u) {
|
| 19 |
+
let i = tid + j * span;
|
| 20 |
+
if (i >= params.count) {
|
| 21 |
+
break;
|
| 22 |
+
}
|
| 23 |
+
{% else %}
|
| 24 |
+
let i = gid.x + gid.y * {{ DISPATCH_FOLD_WIDTH }}u * {{ tunables.WORKGROUP_SIZE }}u;
|
| 25 |
if (i >= params.count) {
|
| 26 |
return;
|
| 27 |
}
|
| 28 |
+
{% endif %}
|
| 29 |
+
|
| 30 |
+
{% set scalarOperand = scalarOperand if scalarOperand is defined else "" %}
|
| 31 |
+
{% if scalarOperand == "a" %}
|
| 32 |
+
// One-element operand: read once and splat across the vector.
|
| 33 |
+
let av = {{ vectorScalar }}(a[0]);
|
| 34 |
+
{% else %}
|
| 35 |
let av = a[i];
|
| 36 |
+
{% endif %}
|
| 37 |
+
{% if scalarOperand == "b" %}
|
| 38 |
+
let bv = {{ vectorScalar }}(b[0]);
|
| 39 |
+
{% else %}
|
| 40 |
let bv = b[i];
|
| 41 |
+
{% endif %}
|
| 42 |
{% if scalar == "i32" or scalar == "u32" %}
|
| 43 |
let r = av + bv;
|
| 44 |
// Narrow integer operations wrap modulo the logical dtype width; int8/uint8
|
| 45 |
// use i32/u32 storage.
|
| 46 |
+
{% if cDtype == "int8" %}
|
| 47 |
c[i] = (r << vec4<u32>(24u)) >> vec4<u32>(24u);
|
| 48 |
+
{% elif cDtype == "uint8" %}
|
| 49 |
c[i] = r & vec4<u32>(0xFFu);
|
| 50 |
{% else %}
|
| 51 |
c[i] = r;
|
|
|
|
| 55 |
{% else %}
|
| 56 |
c[i] = av + bv;
|
| 57 |
{% endif %}
|
| 58 |
+
{% if vec4PerThread > 1 %}
|
| 59 |
+
}
|
| 60 |
+
{% endif %}
|
| 61 |
}
|
build/webgpu/manifest.json
CHANGED
|
@@ -2,234 +2,196 @@
|
|
| 2 |
"domain": "ai.onnx",
|
| 3 |
"name": "Add",
|
| 4 |
"sinceVersion": 14,
|
| 5 |
-
"
|
| 6 |
-
"
|
| 7 |
-
{ "
|
| 8 |
-
{ "role": "B", "dtype": "T", "description": "Second operand." }
|
| 9 |
-
],
|
| 10 |
-
"outputs": [
|
| 11 |
-
{
|
| 12 |
-
"role": "C",
|
| 13 |
-
"dtype": "T",
|
| 14 |
-
"rank": "max(ranks.A, ranks.B)",
|
| 15 |
-
"description": "Elementwise sum of `A` and `B`; has the same element type as the inputs.",
|
| 16 |
-
"shape": "broadcastShape(shapes.A, shapes.B)"
|
| 17 |
-
}
|
| 18 |
-
],
|
| 19 |
-
"typeConstraints": { "T": ["float32", "float16", "int32", "uint32", "int8", "uint8"] },
|
| 20 |
-
"args": {
|
| 21 |
-
"a": { "kind": "tensor", "semantic": "A", "role": "input" },
|
| 22 |
-
"b": { "kind": "tensor", "semantic": "B", "role": "input" },
|
| 23 |
-
"c": { "kind": "tensor", "semantic": "C", "role": "output" }
|
| 24 |
},
|
| 25 |
-
"
|
|
|
|
| 26 |
"variants": [
|
| 27 |
{
|
| 28 |
"id": "same_shape_vec4",
|
| 29 |
"priority": 20,
|
| 30 |
-
"when": ["sameShape(shapes.
|
| 31 |
-
"
|
| 32 |
-
"scalar": "dtypes.T",
|
| 33 |
-
"vectorScalar": "\"vec4<\" ~ dtypes.T ~ \">\"",
|
| 34 |
-
"usesF16": "dtypes.T == \"f16\""
|
| 35 |
-
},
|
| 36 |
"passes": [
|
| 37 |
{
|
| 38 |
"id": "main",
|
| 39 |
"name": "Add.vec4",
|
| 40 |
-
"
|
| 41 |
-
"
|
| 42 |
-
|
| 43 |
-
|
| 44 |
-
|
| 45 |
-
|
| 46 |
-
|
| 47 |
-
|
| 48 |
-
|
| 49 |
-
|
| 50 |
-
|
| 51 |
-
|
| 52 |
-
|
| 53 |
-
|
| 54 |
-
|
| 55 |
-
|
| 56 |
-
|
| 57 |
-
|
| 58 |
-
|
| 59 |
-
|
| 60 |
-
|
| 61 |
-
|
| 62 |
-
|
| 63 |
-
|
| 64 |
-
|
| 65 |
-
|
| 66 |
-
|
| 67 |
-
|
| 68 |
-
|
| 69 |
-
|
| 70 |
-
|
| 71 |
-
|
| 72 |
-
|
| 73 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 74 |
}
|
| 75 |
]
|
| 76 |
},
|
| 77 |
{
|
| 78 |
"id": "broadcast_vec4",
|
| 79 |
-
"
|
| 80 |
-
"
|
|
|
|
| 81 |
"scalar": "dtypes.T",
|
| 82 |
-
"aElement": "\"vec4<\" ~ dtypes.T ~ \">\" if sameShape(shapes.
|
| 83 |
-
"bElement": "\"vec4<\" ~ dtypes.T ~ \">\" if sameShape(shapes.
|
| 84 |
-
"vec4Scalar": "\"vec4<\" ~ dtypes.T ~ \">\""
|
| 85 |
-
"usesF16": "dtypes.T == \"f16\""
|
| 86 |
},
|
| 87 |
"passes": [
|
| 88 |
{
|
| 89 |
"id": "main",
|
| 90 |
"name": "Add",
|
| 91 |
-
"
|
| 92 |
-
|
| 93 |
-
"
|
| 94 |
-
|
| 95 |
-
|
| 96 |
-
|
| 97 |
-
|
| 98 |
-
|
| 99 |
-
|
| 100 |
-
|
| 101 |
-
"cDtype": "tensorDtypes.C"
|
| 102 |
-
}
|
| 103 |
},
|
| 104 |
-
"bindings": [
|
| 105 |
-
|
| 106 |
-
|
| 107 |
-
|
| 108 |
-
|
| 109 |
-
|
| 110 |
-
"elementType": "$aElement"
|
| 111 |
-
},
|
| 112 |
-
{
|
| 113 |
-
"name": "b",
|
| 114 |
-
"arg": "b",
|
| 115 |
-
"semantic": "B",
|
| 116 |
-
"buffer": { "type": "read-only-storage" },
|
| 117 |
-
"elementType": "$bElement"
|
| 118 |
-
},
|
| 119 |
-
{ "name": "c", "arg": "c", "semantic": "C", "buffer": { "type": "storage" }, "elementType": "$vec4Scalar" },
|
| 120 |
-
{
|
| 121 |
-
"name": "params",
|
| 122 |
-
"semantic": "kernel.params",
|
| 123 |
-
"buffer": { "type": "uniform" },
|
| 124 |
-
"struct": {
|
| 125 |
-
"name": "Params",
|
| 126 |
-
"fields": [{ "name": "count", "type": "u32", "value": "numel(shapes.C) / 4" }]
|
| 127 |
-
}
|
| 128 |
-
}
|
| 129 |
-
],
|
| 130 |
-
"dispatch": { "threads": "numel(shapes.C) / 4", "workgroupSize": "tunables.WORKGROUP_SIZE" }
|
| 131 |
}
|
| 132 |
-
]
|
| 133 |
-
"priority": 10
|
| 134 |
},
|
| 135 |
{
|
| 136 |
"id": "same_shape_scalar_x4",
|
| 137 |
"priority": 15,
|
| 138 |
-
"when": ["sameShape(shapes.
|
| 139 |
-
"
|
| 140 |
"passes": [
|
| 141 |
{
|
| 142 |
"id": "main",
|
| 143 |
"name": "Add",
|
| 144 |
-
"
|
| 145 |
-
|
| 146 |
-
"
|
| 147 |
-
|
| 148 |
-
|
| 149 |
-
|
| 150 |
-
|
| 151 |
-
|
| 152 |
-
|
| 153 |
-
|
| 154 |
-
|
| 155 |
-
"itemsPerInvocation": 4
|
| 156 |
-
}
|
| 157 |
},
|
| 158 |
-
"bindings": [
|
| 159 |
-
|
| 160 |
-
|
| 161 |
-
|
| 162 |
-
|
| 163 |
-
|
| 164 |
-
"elementType": "$scalar"
|
| 165 |
-
},
|
| 166 |
-
{
|
| 167 |
-
"name": "b",
|
| 168 |
-
"arg": "b",
|
| 169 |
-
"semantic": "B",
|
| 170 |
-
"buffer": { "type": "read-only-storage" },
|
| 171 |
-
"elementType": "$scalar"
|
| 172 |
-
},
|
| 173 |
-
{ "name": "c", "arg": "c", "semantic": "C", "buffer": { "type": "storage" }, "elementType": "$scalar" },
|
| 174 |
-
{
|
| 175 |
-
"name": "params",
|
| 176 |
-
"semantic": "kernel.params",
|
| 177 |
-
"buffer": { "type": "uniform" },
|
| 178 |
-
"struct": { "name": "Params", "fields": [{ "name": "count", "type": "u32", "value": "numel(shapes.C)" }] }
|
| 179 |
-
}
|
| 180 |
-
],
|
| 181 |
-
"dispatch": { "threads": "ceilDiv(numel(shapes.C), 4)", "workgroupSize": "tunables.WORKGROUP_SIZE" }
|
| 182 |
}
|
| 183 |
]
|
| 184 |
},
|
| 185 |
{
|
| 186 |
"id": "broadcast",
|
| 187 |
-
"when": ["ranks.
|
| 188 |
-
"
|
| 189 |
"passes": [
|
| 190 |
{
|
| 191 |
"id": "main",
|
| 192 |
"name": "Add",
|
| 193 |
-
"
|
| 194 |
-
|
| 195 |
-
"
|
| 196 |
-
|
| 197 |
-
|
| 198 |
-
|
| 199 |
-
|
| 200 |
-
|
| 201 |
-
|
| 202 |
-
|
| 203 |
-
|
| 204 |
-
"itemsPerInvocation": 4
|
| 205 |
-
}
|
| 206 |
},
|
| 207 |
-
"bindings": [
|
| 208 |
-
|
| 209 |
-
|
| 210 |
-
|
| 211 |
-
|
| 212 |
-
|
| 213 |
-
"elementType": "$scalar"
|
| 214 |
-
},
|
| 215 |
-
{
|
| 216 |
-
"name": "b",
|
| 217 |
-
"arg": "b",
|
| 218 |
-
"semantic": "B",
|
| 219 |
-
"buffer": { "type": "read-only-storage" },
|
| 220 |
-
"elementType": "$scalar"
|
| 221 |
-
},
|
| 222 |
-
{ "name": "c", "arg": "c", "semantic": "C", "buffer": { "type": "storage" }, "elementType": "$scalar" },
|
| 223 |
-
{
|
| 224 |
-
"name": "params",
|
| 225 |
-
"semantic": "kernel.params",
|
| 226 |
-
"buffer": { "type": "uniform" },
|
| 227 |
-
"struct": { "name": "Params", "fields": [{ "name": "count", "type": "u32", "value": "numel(shapes.C)" }] }
|
| 228 |
-
}
|
| 229 |
-
],
|
| 230 |
-
"dispatch": { "threads": "ceilDiv(numel(shapes.C), 4)", "workgroupSize": "tunables.WORKGROUP_SIZE" }
|
| 231 |
}
|
| 232 |
]
|
| 233 |
}
|
| 234 |
-
]
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 235 |
}
|
|
|
|
| 2 |
"domain": "ai.onnx",
|
| 3 |
"name": "Add",
|
| 4 |
"sinceVersion": 14,
|
| 5 |
+
"inputs": { "a": { "onnx": "A", "dtype": "T" }, "b": { "onnx": "B", "dtype": "T" } },
|
| 6 |
+
"outputs": {
|
| 7 |
+
"c": { "onnx": "C", "dtype": "T", "rank": "max(ranks.a, ranks.b)", "shape": "broadcastShape(shapes.a, shapes.b)" }
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 8 |
},
|
| 9 |
+
"typeConstraints": { "T": ["float32", "float16", "int32", "uint32", "int8", "uint8"] },
|
| 10 |
+
"tunables": { "WORKGROUP_SIZE": { "default": 256 } },
|
| 11 |
"variants": [
|
| 12 |
{
|
| 13 |
"id": "same_shape_vec4",
|
| 14 |
"priority": 20,
|
| 15 |
+
"when": ["sameShape(shapes.a, shapes.c)", "sameShape(shapes.b, shapes.c)", "numel(shapes.c) > 0", "numel(shapes.c) % 4 == 0", "f16Ok(dtypes.T)"],
|
| 16 |
+
"derive": { "scalar": "dtypes.T", "vectorScalar": "\"vec4<\" ~ dtypes.T ~ \">\"" },
|
|
|
|
|
|
|
|
|
|
|
|
|
| 17 |
"passes": [
|
| 18 |
{
|
| 19 |
"id": "main",
|
| 20 |
"name": "Add.vec4",
|
| 21 |
+
"shader": "binary-vec4.wgsl.jinja",
|
| 22 |
+
"derive": {
|
| 23 |
+
"op": "\"add\"",
|
| 24 |
+
"cDtype": "tensorDtypes.c",
|
| 25 |
+
"vec4PerThread": "4 if numel(shapes.c) * dtypeBytes(tensorDtypes.c) <= 16777216 else 1"
|
| 26 |
+
},
|
| 27 |
+
"bindings": ["a", "b", "c_binary", "params"],
|
| 28 |
+
"dispatch": {
|
| 29 |
+
"x": "min(ceilDiv((ceilDiv(numel(shapes.c) / 4, 4 if numel(shapes.c) * dtypeBytes(tensorDtypes.c) <= 16777216 else 1)), (tunables.WORKGROUP_SIZE)), 65535)",
|
| 30 |
+
"y": "ceilDiv(ceilDiv((ceilDiv(numel(shapes.c) / 4, 4 if numel(shapes.c) * dtypeBytes(tensorDtypes.c) <= 16777216 else 1)), (tunables.WORKGROUP_SIZE)), 65535)",
|
| 31 |
+
"z": 1
|
| 32 |
+
}
|
| 33 |
+
}
|
| 34 |
+
]
|
| 35 |
+
},
|
| 36 |
+
{
|
| 37 |
+
"id": "scalar_b_vec4",
|
| 38 |
+
"priority": 18,
|
| 39 |
+
"when": ["sameShape(shapes.a, shapes.c)", "numel(shapes.b) == 1", "numel(shapes.c) > 0", "numel(shapes.c) % 4 == 0", "f16Ok(dtypes.T)"],
|
| 40 |
+
"derive": { "scalar": "dtypes.T", "vectorScalar": "\"vec4<\" ~ dtypes.T ~ \">\"" },
|
| 41 |
+
"passes": [
|
| 42 |
+
{
|
| 43 |
+
"id": "main",
|
| 44 |
+
"name": "Add.scalarBVec4",
|
| 45 |
+
"shader": "binary-vec4.wgsl.jinja",
|
| 46 |
+
"derive": {
|
| 47 |
+
"op": "\"add\"",
|
| 48 |
+
"cDtype": "tensorDtypes.c",
|
| 49 |
+
"scalarOperand": "\"b\"",
|
| 50 |
+
"vec4PerThread": "4 if numel(shapes.c) * dtypeBytes(tensorDtypes.c) <= 16777216 else 1"
|
| 51 |
+
},
|
| 52 |
+
"bindings": ["a", "b_2", "c_binary", "params"],
|
| 53 |
+
"dispatch": {
|
| 54 |
+
"x": "min(ceilDiv((ceilDiv(numel(shapes.c) / 4, 4 if numel(shapes.c) * dtypeBytes(tensorDtypes.c) <= 16777216 else 1)), (tunables.WORKGROUP_SIZE)), 65535)",
|
| 55 |
+
"y": "ceilDiv(ceilDiv((ceilDiv(numel(shapes.c) / 4, 4 if numel(shapes.c) * dtypeBytes(tensorDtypes.c) <= 16777216 else 1)), (tunables.WORKGROUP_SIZE)), 65535)",
|
| 56 |
+
"z": 1
|
| 57 |
+
}
|
| 58 |
+
}
|
| 59 |
+
]
|
| 60 |
+
},
|
| 61 |
+
{
|
| 62 |
+
"id": "scalar_a_vec4",
|
| 63 |
+
"priority": 18,
|
| 64 |
+
"when": ["sameShape(shapes.b, shapes.c)", "numel(shapes.a) == 1", "numel(shapes.c) > 0", "numel(shapes.c) % 4 == 0", "f16Ok(dtypes.T)"],
|
| 65 |
+
"derive": { "scalar": "dtypes.T", "vectorScalar": "\"vec4<\" ~ dtypes.T ~ \">\"" },
|
| 66 |
+
"passes": [
|
| 67 |
+
{
|
| 68 |
+
"id": "main",
|
| 69 |
+
"name": "Add.scalarAVec4",
|
| 70 |
+
"shader": "binary-vec4.wgsl.jinja",
|
| 71 |
+
"derive": {
|
| 72 |
+
"op": "\"add\"",
|
| 73 |
+
"cDtype": "tensorDtypes.c",
|
| 74 |
+
"scalarOperand": "\"a\"",
|
| 75 |
+
"vec4PerThread": "4 if numel(shapes.c) * dtypeBytes(tensorDtypes.c) <= 16777216 else 1"
|
| 76 |
+
},
|
| 77 |
+
"bindings": ["a_2", "b", "c_binary", "params"],
|
| 78 |
+
"dispatch": {
|
| 79 |
+
"x": "min(ceilDiv((ceilDiv(numel(shapes.c) / 4, 4 if numel(shapes.c) * dtypeBytes(tensorDtypes.c) <= 16777216 else 1)), (tunables.WORKGROUP_SIZE)), 65535)",
|
| 80 |
+
"y": "ceilDiv(ceilDiv((ceilDiv(numel(shapes.c) / 4, 4 if numel(shapes.c) * dtypeBytes(tensorDtypes.c) <= 16777216 else 1)), (tunables.WORKGROUP_SIZE)), 65535)",
|
| 81 |
+
"z": 1
|
| 82 |
+
}
|
| 83 |
}
|
| 84 |
]
|
| 85 |
},
|
| 86 |
{
|
| 87 |
"id": "broadcast_vec4",
|
| 88 |
+
"priority": 10,
|
| 89 |
+
"when": ["ranks.a <= ranks.c", "ranks.b <= ranks.c", "ranks.c >= 1", "numel(shapes.c) % 4 == 0", "numel(shapes.c) >= 4", "f16Ok(dtypes.T)"],
|
| 90 |
+
"derive": {
|
| 91 |
"scalar": "dtypes.T",
|
| 92 |
+
"aElement": "\"vec4<\" ~ dtypes.T ~ \">\" if sameShape(shapes.a, shapes.c) else dtypes.T",
|
| 93 |
+
"bElement": "\"vec4<\" ~ dtypes.T ~ \">\" if sameShape(shapes.b, shapes.c) else dtypes.T",
|
| 94 |
+
"vec4Scalar": "\"vec4<\" ~ dtypes.T ~ \">\""
|
|
|
|
| 95 |
},
|
| 96 |
"passes": [
|
| 97 |
{
|
| 98 |
"id": "main",
|
| 99 |
"name": "Add",
|
| 100 |
+
"shader": "binary-broadcast-vec4.wgsl.jinja",
|
| 101 |
+
"derive": {
|
| 102 |
+
"aShape": "shapes.a",
|
| 103 |
+
"bShape": "shapes.b",
|
| 104 |
+
"cShape": "shapes.c",
|
| 105 |
+
"aRank": "ranks.a",
|
| 106 |
+
"bRank": "ranks.b",
|
| 107 |
+
"cRank": "ranks.c",
|
| 108 |
+
"op": "\"add\"",
|
| 109 |
+
"cDtype": "tensorDtypes.c"
|
|
|
|
|
|
|
| 110 |
},
|
| 111 |
+
"bindings": ["a_3", "b_3", "c_2_binary", "params"],
|
| 112 |
+
"dispatch": {
|
| 113 |
+
"x": "min(ceilDiv((numel(shapes.c) / 4), (tunables.WORKGROUP_SIZE)), 65535)",
|
| 114 |
+
"y": "ceilDiv(ceilDiv((numel(shapes.c) / 4), (tunables.WORKGROUP_SIZE)), 65535)",
|
| 115 |
+
"z": 1
|
| 116 |
+
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 117 |
}
|
| 118 |
+
]
|
|
|
|
| 119 |
},
|
| 120 |
{
|
| 121 |
"id": "same_shape_scalar_x4",
|
| 122 |
"priority": 15,
|
| 123 |
+
"when": ["sameShape(shapes.a, shapes.c)", "sameShape(shapes.b, shapes.c)", "numel(shapes.c) > 0", "numel(shapes.c) % 4 != 0", "f16Ok(dtypes.T)"],
|
| 124 |
+
"derive": { "scalar": "dtypes.T" },
|
| 125 |
"passes": [
|
| 126 |
{
|
| 127 |
"id": "main",
|
| 128 |
"name": "Add",
|
| 129 |
+
"shader": "binary-broadcast.wgsl.jinja",
|
| 130 |
+
"derive": {
|
| 131 |
+
"aShape": "shapes.a",
|
| 132 |
+
"bShape": "shapes.b",
|
| 133 |
+
"cShape": "shapes.c",
|
| 134 |
+
"aRank": "ranks.a",
|
| 135 |
+
"bRank": "ranks.b",
|
| 136 |
+
"cRank": "ranks.c",
|
| 137 |
+
"op": "\"add\"",
|
| 138 |
+
"cDtype": "tensorDtypes.c",
|
| 139 |
+
"itemsPerInvocation": 4
|
|
|
|
|
|
|
| 140 |
},
|
| 141 |
+
"bindings": ["a_2", "b_2", "c_3", "params_2"],
|
| 142 |
+
"dispatch": {
|
| 143 |
+
"x": "min(ceilDiv((ceilDiv(numel(shapes.c), 4)), (tunables.WORKGROUP_SIZE)), 65535)",
|
| 144 |
+
"y": "ceilDiv(ceilDiv((ceilDiv(numel(shapes.c), 4)), (tunables.WORKGROUP_SIZE)), 65535)",
|
| 145 |
+
"z": 1
|
| 146 |
+
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 147 |
}
|
| 148 |
]
|
| 149 |
},
|
| 150 |
{
|
| 151 |
"id": "broadcast",
|
| 152 |
+
"when": ["ranks.a <= ranks.c", "ranks.b <= ranks.c", "f16Ok(dtypes.T)"],
|
| 153 |
+
"derive": { "scalar": "dtypes.T" },
|
| 154 |
"passes": [
|
| 155 |
{
|
| 156 |
"id": "main",
|
| 157 |
"name": "Add",
|
| 158 |
+
"shader": "binary-broadcast.wgsl.jinja",
|
| 159 |
+
"derive": {
|
| 160 |
+
"aShape": "shapes.a",
|
| 161 |
+
"bShape": "shapes.b",
|
| 162 |
+
"cShape": "shapes.c",
|
| 163 |
+
"aRank": "ranks.a",
|
| 164 |
+
"bRank": "ranks.b",
|
| 165 |
+
"cRank": "ranks.c",
|
| 166 |
+
"op": "\"add\"",
|
| 167 |
+
"cDtype": "tensorDtypes.c",
|
| 168 |
+
"itemsPerInvocation": 4
|
|
|
|
|
|
|
| 169 |
},
|
| 170 |
+
"bindings": ["a_2", "b_2", "c_3", "params_2"],
|
| 171 |
+
"dispatch": {
|
| 172 |
+
"x": "min(ceilDiv((ceilDiv(numel(shapes.c), 4)), (tunables.WORKGROUP_SIZE)), 65535)",
|
| 173 |
+
"y": "ceilDiv(ceilDiv((ceilDiv(numel(shapes.c), 4)), (tunables.WORKGROUP_SIZE)), 65535)",
|
| 174 |
+
"z": 1
|
| 175 |
+
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 176 |
}
|
| 177 |
]
|
| 178 |
}
|
| 179 |
+
],
|
| 180 |
+
"bindings": {
|
| 181 |
+
"a": { "buffer": "read-only-storage", "elementType": "$vectorScalar" },
|
| 182 |
+
"b": { "buffer": "read-only-storage", "elementType": "$vectorScalar" },
|
| 183 |
+
"c_binary": { "buffer": "storage", "elementType": "$vectorScalar", "name": "c" },
|
| 184 |
+
"params": { "buffer": "uniform", "struct": [{ "name": "count", "type": "u32", "value": "numel(shapes.c) / 4" }] },
|
| 185 |
+
"b_2": { "buffer": "read-only-storage", "name": "b", "elementType": "$scalar" },
|
| 186 |
+
"a_2": { "buffer": "read-only-storage", "name": "a", "elementType": "$scalar" },
|
| 187 |
+
"a_3": { "buffer": "read-only-storage", "name": "a", "elementType": "$aElement" },
|
| 188 |
+
"b_3": { "buffer": "read-only-storage", "name": "b", "elementType": "$bElement" },
|
| 189 |
+
"c_2_binary": { "buffer": "storage", "name": "c", "elementType": "$vec4Scalar" },
|
| 190 |
+
"c_3": { "buffer": "storage", "name": "c", "elementType": "$scalar" },
|
| 191 |
+
"params_2": {
|
| 192 |
+
"buffer": "uniform",
|
| 193 |
+
"name": "params",
|
| 194 |
+
"struct": [{ "name": "count", "type": "u32", "value": "numel(shapes.c)" }]
|
| 195 |
+
}
|
| 196 |
+
}
|
| 197 |
}
|
build/webgpu/metadata.json
CHANGED
|
@@ -1,20 +1,30 @@
|
|
| 1 |
{
|
| 2 |
"name": "ai.onnx.Add",
|
| 3 |
-
"id": "
|
| 4 |
"version": 1,
|
| 5 |
"license": "Apache-2.0",
|
| 6 |
"backend": { "type": "webgpu" },
|
| 7 |
"digest": {
|
| 8 |
"algorithm": "sha256",
|
| 9 |
"files": {
|
| 10 |
-
"bench.json": "
|
| 11 |
-
"binary-broadcast-vec4.wgsl.jinja": "
|
| 12 |
-
"binary-broadcast.wgsl.jinja": "
|
| 13 |
-
"binary-vec4.wgsl.jinja": "
|
| 14 |
-
"manifest.json": "
|
| 15 |
-
"test.json": "
|
| 16 |
}
|
| 17 |
},
|
| 18 |
-
"provenance": { "kernel": { "sha": "
|
| 19 |
-
"webgpu": {
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 20 |
}
|
|
|
|
| 1 |
{
|
| 2 |
"name": "ai.onnx.Add",
|
| 3 |
+
"id": "_ai_onnx_add_webgpu_cf0ca6f",
|
| 4 |
"version": 1,
|
| 5 |
"license": "Apache-2.0",
|
| 6 |
"backend": { "type": "webgpu" },
|
| 7 |
"digest": {
|
| 8 |
"algorithm": "sha256",
|
| 9 |
"files": {
|
| 10 |
+
"bench.json": "U6k4fuUAGJgoYWWbs5IbVMOK8X7eztmuSigDquudz5o=",
|
| 11 |
+
"binary-broadcast-vec4.wgsl.jinja": "tea2njOdNlRqQUK6jbsdepyNl/Lz9dmTycQZJOiuvzs=",
|
| 12 |
+
"binary-broadcast.wgsl.jinja": "GvnQZK2gkzwRTXhxCcOrZanBUvRSqPyqiTVMRF5a7gc=",
|
| 13 |
+
"binary-vec4.wgsl.jinja": "HowqRn81nC/ise93aa+XYqgA5oak9ddqfKbZ2wbVziI=",
|
| 14 |
+
"manifest.json": "63x5nCiu+fKZ1tFeDhC0Yhd1ziGqxw6Bv7KKrjGMlbQ=",
|
| 15 |
+
"test.json": "mwBGLiuw4ehiD/U0fa1hcnfLU0kUik2AVY19syL9Re4="
|
| 16 |
}
|
| 17 |
},
|
| 18 |
+
"provenance": { "kernel": { "sha": "91d990483a174128daf7673f3f37a7c890493ae1", "dirty": false } },
|
| 19 |
+
"webgpu": {
|
| 20 |
+
"manifestSpec": "2.0",
|
| 21 |
+
"variants": {
|
| 22 |
+
"same_shape_vec4": ["binary-vec4.wgsl.jinja"],
|
| 23 |
+
"scalar_b_vec4": ["binary-vec4.wgsl.jinja"],
|
| 24 |
+
"scalar_a_vec4": ["binary-vec4.wgsl.jinja"],
|
| 25 |
+
"broadcast_vec4": ["binary-broadcast-vec4.wgsl.jinja"],
|
| 26 |
+
"same_shape_scalar_x4": ["binary-broadcast.wgsl.jinja"],
|
| 27 |
+
"broadcast": ["binary-broadcast.wgsl.jinja"]
|
| 28 |
+
}
|
| 29 |
+
}
|
| 30 |
}
|
build/webgpu/test.json
CHANGED
|
@@ -1,5 +1,4 @@
|
|
| 1 |
{
|
| 2 |
-
"op": "ai.onnx.Add",
|
| 3 |
"fixtureArrays": {
|
| 4 |
"onnx_backend_add_input_a": [1.764052391052246, 0.40015721321105957, 0.978738009929657, 2.2408931255340576, 1.8675580024719238, -0.9772778749465942, 0.9500884413719177, -0.15135720372200012, -0.10321885347366333, 0.4105985164642334, 0.14404356479644775, 1.4542734622955322, 0.7610377073287964, 0.12167501449584961, 0.44386324286460876, 0.3336743414402008, 1.4940791130065918, -0.2051582634449005, 0.3130677044391632, -0.8540957570075989, -2.5529897212982178, 0.653618574142456, 0.8644362092018127, -0.7421650290489197, 2.269754648208618, -1.4543657302856445, 0.04575851559638977, -0.18718385696411133, 1.5327792167663574, 1.4693588018417358, 0.154947429895401, 0.37816253304481506, -0.8877857327461243, -1.980796456336975, -0.34791216254234314, 0.15634897351264954, 1.2302906513214111, 1.202379822731018, -0.38732680678367615, -0.302302747964859, -1.0485529899597168, -1.420017957687378, -1.7062702178955078, 1.950775384902954, -0.5096521973609924, -0.4380742907524109, -1.2527953386306763, 0.7774903774261475, -1.6138978004455566, -0.21274028718471527, -0.8954665660858154, 0.38690251111984253, -0.5108051300048828, -1.18063223361969, -0.02818222902715206, 0.4283318817615509, 0.06651721894741058, 0.30247190594673157, -0.6343221068382263, -0.3627411723136902]
|
| 5 |
},
|
|
@@ -45,7 +44,7 @@
|
|
| 45 |
"provenance": {
|
| 46 |
"source": "onnxruntime/test/providers/cpu/math/element_wise_ops_test.cc",
|
| 47 |
"test": "MathOpTest.Add_float",
|
| 48 |
-
"notes": "
|
| 49 |
},
|
| 50 |
"inputs": {
|
| 51 |
"a": { "dtype": "float32", "shape": [3], "data": { "kind": "values", "values": [1e-40, -1e-40, 1e-39] } },
|
|
@@ -276,7 +275,7 @@
|
|
| 276 |
"provenance": {
|
| 277 |
"source": "onnxruntime/test/providers/cpu/math/element_wise_ops_test.cc",
|
| 278 |
"test": "MathOpTest.Add_int8",
|
| 279 |
-
"notes": "
|
| 280 |
},
|
| 281 |
"inputs": {
|
| 282 |
"a": { "dtype": "int8", "shape": [3], "data": { "kind": "values", "values": [127, -128, 100] } },
|
|
@@ -313,7 +312,7 @@
|
|
| 313 |
"provenance": {
|
| 314 |
"source": "onnxruntime/test/providers/cpu/math/element_wise_ops_test.cc",
|
| 315 |
"test": "MathOpTest.Add_uint8",
|
| 316 |
-
"notes": "
|
| 317 |
},
|
| 318 |
"inputs": {
|
| 319 |
"a": { "dtype": "uint8", "shape": [3], "data": { "kind": "values", "values": [255, 0, 200] } },
|
|
@@ -714,6 +713,44 @@
|
|
| 714 |
}
|
| 715 |
}
|
| 716 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 717 |
}
|
| 718 |
]
|
| 719 |
}
|
|
|
|
| 1 |
{
|
|
|
|
| 2 |
"fixtureArrays": {
|
| 3 |
"onnx_backend_add_input_a": [1.764052391052246, 0.40015721321105957, 0.978738009929657, 2.2408931255340576, 1.8675580024719238, -0.9772778749465942, 0.9500884413719177, -0.15135720372200012, -0.10321885347366333, 0.4105985164642334, 0.14404356479644775, 1.4542734622955322, 0.7610377073287964, 0.12167501449584961, 0.44386324286460876, 0.3336743414402008, 1.4940791130065918, -0.2051582634449005, 0.3130677044391632, -0.8540957570075989, -2.5529897212982178, 0.653618574142456, 0.8644362092018127, -0.7421650290489197, 2.269754648208618, -1.4543657302856445, 0.04575851559638977, -0.18718385696411133, 1.5327792167663574, 1.4693588018417358, 0.154947429895401, 0.37816253304481506, -0.8877857327461243, -1.980796456336975, -0.34791216254234314, 0.15634897351264954, 1.2302906513214111, 1.202379822731018, -0.38732680678367615, -0.302302747964859, -1.0485529899597168, -1.420017957687378, -1.7062702178955078, 1.950775384902954, -0.5096521973609924, -0.4380742907524109, -1.2527953386306763, 0.7774903774261475, -1.6138978004455566, -0.21274028718471527, -0.8954665660858154, 0.38690251111984253, -0.5108051300048828, -1.18063223361969, -0.02818222902715206, 0.4283318817615509, 0.06651721894741058, 0.30247190594673157, -0.6343221068382263, -0.3627411723136902]
|
| 4 |
},
|
|
|
|
| 44 |
"provenance": {
|
| 45 |
"source": "onnxruntime/test/providers/cpu/math/element_wise_ops_test.cc",
|
| 46 |
"test": "MathOpTest.Add_float",
|
| 47 |
+
"notes": "On an unaligned scalar path, addition by zero must preserve finite subnormal values while exact opposites cancel."
|
| 48 |
},
|
| 49 |
"inputs": {
|
| 50 |
"a": { "dtype": "float32", "shape": [3], "data": { "kind": "values", "values": [1e-40, -1e-40, 1e-39] } },
|
|
|
|
| 275 |
"provenance": {
|
| 276 |
"source": "onnxruntime/test/providers/cpu/math/element_wise_ops_test.cc",
|
| 277 |
"test": "MathOpTest.Add_int8",
|
| 278 |
+
"notes": "Signed overflow must wrap to the logical int8 width."
|
| 279 |
},
|
| 280 |
"inputs": {
|
| 281 |
"a": { "dtype": "int8", "shape": [3], "data": { "kind": "values", "values": [127, -128, 100] } },
|
|
|
|
| 312 |
"provenance": {
|
| 313 |
"source": "onnxruntime/test/providers/cpu/math/element_wise_ops_test.cc",
|
| 314 |
"test": "MathOpTest.Add_uint8",
|
| 315 |
+
"notes": "Unsigned overflow must wrap to the logical uint8 width."
|
| 316 |
},
|
| 317 |
"inputs": {
|
| 318 |
"a": { "dtype": "uint8", "shape": [3], "data": { "kind": "values", "values": [255, 0, 200] } },
|
|
|
|
| 713 |
}
|
| 714 |
}
|
| 715 |
}
|
| 716 |
+
},
|
| 717 |
+
{
|
| 718 |
+
"name": "scalar_b_vec4_route",
|
| 719 |
+
"provenance": {
|
| 720 |
+
"notes": "Route lock for the one-element-operand vec4 kernel: the other operand matches the output and the vector count is a multiple of four, so the scalar reads once and splats."
|
| 721 |
+
},
|
| 722 |
+
"inputs": {
|
| 723 |
+
"a": {
|
| 724 |
+
"dtype": "float32",
|
| 725 |
+
"shape": [2, 8],
|
| 726 |
+
"data": { "kind": "fillFloat32", "sinStep": 0.17, "cosStep": 0.23, "scale": 1.5 }
|
| 727 |
+
},
|
| 728 |
+
"b": {
|
| 729 |
+
"dtype": "float32",
|
| 730 |
+
"shape": [1],
|
| 731 |
+
"data": { "kind": "fillFloat32", "sinStep": 0.31, "cosStep": 0.11, "scale": 1.5 }
|
| 732 |
+
}
|
| 733 |
+
},
|
| 734 |
+
"outputs": { "c": { "dtype": "float32", "shape": [2, 8], "tolerance": 0.000001 } }
|
| 735 |
+
},
|
| 736 |
+
{
|
| 737 |
+
"name": "scalar_a_vec4_route",
|
| 738 |
+
"provenance": {
|
| 739 |
+
"notes": "Route lock for the one-element-operand vec4 kernel: the other operand matches the output and the vector count is a multiple of four, so the scalar reads once and splats."
|
| 740 |
+
},
|
| 741 |
+
"inputs": {
|
| 742 |
+
"a": {
|
| 743 |
+
"dtype": "float32",
|
| 744 |
+
"shape": [1],
|
| 745 |
+
"data": { "kind": "fillFloat32", "sinStep": 0.17, "cosStep": 0.23, "scale": 1.5 }
|
| 746 |
+
},
|
| 747 |
+
"b": {
|
| 748 |
+
"dtype": "float32",
|
| 749 |
+
"shape": [2, 8],
|
| 750 |
+
"data": { "kind": "fillFloat32", "sinStep": 0.31, "cosStep": 0.11, "scale": 1.5 }
|
| 751 |
+
}
|
| 752 |
+
},
|
| 753 |
+
"outputs": { "c": { "dtype": "float32", "shape": [2, 8], "tolerance": 0.000001 } }
|
| 754 |
}
|
| 755 |
]
|
| 756 |
}
|