onnxruntime/js/web/test/data/ops/acos.jsonc
Yulong Wang 1743e9a615
[js] enable formatter for more file types (#16888)
### Description
enable formatter for .js/.json/.jsonc/.md files
2023-07-28 15:46:58 -07:00

77 lines
1.5 KiB
Text

[
{
"name": "Acos with no attributes",
"operator": "Acos",
"attributes": [],
"cases": [
{
"name": "T[0]",
"inputs": [
{
"data": [0.4],
"dims": [1],
"type": "float32"
}
],
"outputs": [
{
"data": [1.1593],
"dims": [1],
"type": "float32"
}
]
},
{
"name": "T[1]",
"inputs": [
{
"data": [0.1, 0.2, 0.3, 0.4],
"dims": [4],
"type": "float32"
}
],
"outputs": [
{
"data": [1.4706, 1.3694, 1.2661, 1.1593],
"dims": [4],
"type": "float32"
}
]
},
{
"name": "T[2,4]",
"inputs": [
{
"data": [0.1, 0.2, 0.3, 0.4, 0.9, 0.8, 0.7, 0.6],
"dims": [2, 4],
"type": "float32"
}
],
"outputs": [
{
"data": [1.4706, 1.3694, 1.2661, 1.1593, 0.451, 0.6435, 0.7954, 0.9273],
"dims": [2, 4],
"type": "float32"
}
]
},
{
"name": "Scalar",
"inputs": [
{
"data": [0.1],
"dims": [],
"type": "float32"
}
],
"outputs": [
{
"data": [1.4706],
"dims": [],
"type": "float32"
}
]
}
]
}
]