onnxruntime/js/web/test/data/ops/expand.jsonc
2023-08-16 11:24:26 -07:00

89 lines
1.6 KiB
Text

[
{
"name": "Expand 1 - float32",
"operator": "Expand",
"attributes": [],
"cases": [
{
"name": "Expand 1 - float32",
"inputs": [
{
"data": [1],
"dims": [1, 1],
"type": "float32"
},
{
"data": [1, 4],
"dims": [2],
"type": "int64"
}
],
"outputs": [
{
"data": [1, 1, 1, 1],
"dims": [1, 4],
"type": "float32"
}
]
}
]
},
{
"name": "Expand 2 - float32",
"operator": "Expand",
"attributes": [],
"cases": [
{
"name": "Expand 2 - float32",
"inputs": [
{
"data": [1],
"dims": [1, 1],
"type": "float32"
},
{
"data": [1, 6],
"dims": [2],
"type": "int64"
}
],
"outputs": [
{
"data": [1, 1, 1, 1, 1, 1],
"dims": [1, 6],
"type": "float32"
}
]
}
]
},
{
"name": "Expand 1D - float32",
"operator": "Expand",
"attributes": [],
"cases": [
{
"name": "Expand 1D - float32",
"inputs": [
{
"data": [1],
"dims": [1],
"type": "float32"
},
{
"data": [4],
"dims": [1],
"type": "int64"
}
],
"outputs": [
{
"data": [1, 1, 1, 1],
"dims": [4],
"type": "float32"
}
]
}
]
}
]