onnxruntime/js/web/test/data/ops/tan.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": "tan with no attributes",
"operator": "Tan",
"attributes": [],
"cases": [
{
"name": "T[0]",
"inputs": [
{
"data": [0.4],
"dims": [1],
"type": "float32"
}
],
"outputs": [
{
"data": [0.42279322],
"dims": [1],
"type": "float32"
}
]
},
{
"name": "T[1]",
"inputs": [
{
"data": [0.1, 0.2, 0.3, 0.4],
"dims": [4],
"type": "float32"
}
],
"outputs": [
{
"data": [0.10033467, 0.20271004, 0.30933625, 0.42279322],
"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": [0.10033467, 0.20271004, 0.30933625, 0.42279322, 1.26015822, 1.02963856, 0.84228838, 0.68413681],
"dims": [2, 4],
"type": "float32"
}
]
},
{
"name": "Scalar",
"inputs": [
{
"data": [0.1],
"dims": [],
"type": "float32"
}
],
"outputs": [
{
"data": [0.10033467],
"dims": [],
"type": "float32"
}
]
}
]
}
]