onnxruntime/js/web/test/data/ops/abs-int32.jsonc

27 lines
480 B
Text
Raw Normal View History

[
{
"name": "abs with no attributes",
"operator": "Abs",
"attributes": [],
"cases": [
{
"name": "T[2,4] (int32)",
"inputs": [
{
"data": [1, 2, 1, 3, 2, 3, 1, 2],
"dims": [2, 4],
"type": "int32"
}
],
"outputs": [
{
"data": [1, 2, 1, 3, 2, 3, 1, 2],
"dims": [2, 4],
"type": "int32"
}
]
}
]
}
]