onnxruntime/js/web/test/data/ops/shape.jsonc
2021-06-08 06:22:45 -07:00

26 lines
432 B
Text

[
{
"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"
}
]
}
]
}
]