Skip to content

Commit 0edb035

Browse files
authored
[js/web] fix suite test list for zero sized tensor (#19638)
### Description Fixes build break brought by #19614 Currently WebGL backend does not support zero sized tensor. This change split test data into 2 parts, and only enable zero sized tensor tests for WebGPU.
1 parent 9ccdc49 commit 0edb035

File tree

4 files changed

+594
-22
lines changed

4 files changed

+594
-22
lines changed

js/web/test/data/ops/add.jsonc

-22
Original file line numberDiff line numberDiff line change
@@ -157,28 +157,6 @@
157157
"type": "float32"
158158
}
159159
]
160-
},
161-
{
162-
"name": "T[2,0] T[2,1]",
163-
"inputs": [
164-
{
165-
"data": [],
166-
"dims": [2, 0],
167-
"type": "float32"
168-
},
169-
{
170-
"data": [1, 2],
171-
"dims": [2, 1],
172-
"type": "float32"
173-
}
174-
],
175-
"outputs": [
176-
{
177-
"data": [],
178-
"dims": [2, 0],
179-
"type": "float32"
180-
}
181-
]
182160
}
183161
]
184162
}
+31
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
[
2+
{
3+
"name": "Add with no attributes",
4+
"operator": "Add",
5+
"attributes": [],
6+
"cases": [
7+
{
8+
"name": "T[2,0] T[2,1]",
9+
"inputs": [
10+
{
11+
"data": [],
12+
"dims": [2, 0],
13+
"type": "float32"
14+
},
15+
{
16+
"data": [1, 2],
17+
"dims": [2, 1],
18+
"type": "float32"
19+
}
20+
],
21+
"outputs": [
22+
{
23+
"data": [],
24+
"dims": [2, 0],
25+
"type": "float32"
26+
}
27+
]
28+
}
29+
]
30+
}
31+
]

0 commit comments

Comments
 (0)