onnxruntime/js/web/test/data/ops/shape.jsonc

27 lines
432 B
Text
Raw Normal View History

2021-06-08 13:22:45 +00:00
[
{
"name": "Shape op test",
"operator": "Shape",
"attributes": [],
"cases": [
{
"name": "T[0]",
"inputs": [
{
"data": [1, 1, 1, 1],
"dims": [2, 2],
"type": "float32"
}
],
"outputs": [
{
"data": [2, 2],
"dims": [2],
"type": "int32"
}
]
}
]
}
]