File size: 1,023 Bytes
d59fe5a | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 | {
"op": "ai.onnx.BitwiseOr",
"cases": [
{
"name": "u32_1m",
"preset": "smoke",
"inputs": {
"a": { "dtype": "uint32", "shape": [1048576], "data": { "kind": "constant", "value": 305419896 } },
"b": { "dtype": "uint32", "shape": [1048576], "data": { "kind": "constant", "value": 252645135 } }
},
"outputs": { "c": { "dtype": "uint32", "shape": [1048576] } },
"bench": {
"metrics": [{ "type": "bandwidth", "value": "(numel(shapes.a) + numel(shapes.b) + numel(shapes.c)) * 4" }]
}
},
{
"name": "u32_same_shape_odd_numel",
"preset": "stress",
"inputs": {
"a": { "dtype": "uint32", "shape": [16777217], "dist": "uniformBits", "seed": 3 },
"b": { "dtype": "uint32", "shape": [16777217], "dist": "uniformBits", "seed": 4 }
},
"outputs": { "c": { "dtype": "uint32", "shape": [16777217], "dist": "empty" } },
"bench": { "metrics": [{ "type": "bandwidth", "value": "16777217 * 4 * 3" }] }
}
]
}
|