mirror of
https://github.com/saymrwulf/onnxruntime.git
synced 2026-05-17 21:10:43 +00:00
### Description Include Support for neg.int32 ### Motivation and Context <!-- - Why is this change required? What problem does it solve? - If it fixes an open issue, please link to the issue here. -->
26 lines
486 B
Text
26 lines
486 B
Text
[
|
|
{
|
|
"name": "neg with no attributes",
|
|
"operator": "Neg",
|
|
"attributes": [],
|
|
"cases": [
|
|
{
|
|
"name": "T[2,4] (int32)",
|
|
"inputs": [
|
|
{
|
|
"data": [1, 2, -1, -2, 0, 1, -1, 0],
|
|
"dims": [2, 4],
|
|
"type": "int32"
|
|
}
|
|
],
|
|
"outputs": [
|
|
{
|
|
"data": [-1, -2, 1, 2, 0, -1, 1, 0],
|
|
"dims": [2, 4],
|
|
"type": "int32"
|
|
}
|
|
]
|
|
}
|
|
]
|
|
}
|
|
]
|