onnxruntime/js/web/test/data/ops/slice.jsonc
xhcao 026672e947
[js/webgpu] Support slice int32 (#16968)
Co-authored-by: Xing Xu <xing.xu@intel.com>
2023-09-05 18:05:47 -07:00

40 lines
1 KiB
Text

[
{
"name": "Slice float32",
"operator": "Slice",
"attributes": [],
"cases": [
{
"name": "T[5] T[1] T[1] (float32)",
"inputs": [
{
"data": [
0.3964604139328003, -0.8916832804679871, -1.6578896045684814, 1.960708737373352, 1.181204915046692
],
"dims": [5],
"type": "float32"
},
{ "data": [3], "dims": [1], "type": "int64" },
{ "data": [4], "dims": [1], "type": "int64" }
],
"outputs": [{ "data": [1.960708737373352], "dims": [1], "type": "float32" }]
}
]
},
{
"name": "Slice int32",
"operator": "Slice",
"attributes": [],
"cases": [
{
"name": "T[5] T[1] T[1] (int32)",
"inputs": [
{ "data": [0, 0, -1, 1, 0], "dims": [5], "type": "int32" },
{ "data": [3], "dims": [1], "type": "int64" },
{ "data": [4], "dims": [1], "type": "int64" }
],
"outputs": [{ "data": [1], "dims": [1], "type": "int32" }]
}
]
}
]