File size: 1,798 Bytes
19fcf4a | 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 29 30 31 32 33 34 35 36 37 38 39 40 41 | {
"tunableSpace": { "WORKGROUP_SIZE": [64, 128, 256] },
"cases": [
{
"name": "neg-f32-1m",
"preset": "smoke",
"vars": { "dtype": "float32", "count": 1048576 },
"inputs": { "x": { "shape": [1048576], "dtype": "float32", "dist": "normal", "seed": 920, "scale": 1 } },
"outputs": { "y": { "shape": [1048576], "dtype": "float32" } },
"bench": {
"primary": true,
"metrics": [{ "type": "bandwidth", "value": "args.count * dtypeBytes(args.dtype) * 2" }]
}
},
{
"name": "neg-f32-8m",
"preset": "smoke",
"vars": { "dtype": "float32", "count": 8388608 },
"inputs": { "x": { "shape": [8388608], "dtype": "float32", "seed": 7017, "dist": "normal", "scale": 1 } },
"outputs": { "y": { "shape": [8388608], "dtype": "float32" } },
"bench": { "metrics": [{ "type": "bandwidth", "value": "args.count * dtypeBytes(args.dtype) * 2" }] }
},
{
"name": "neg-f16-8m",
"preset": "smoke",
"vars": { "dtype": "float16", "count": 8388608 },
"inputs": { "x": { "shape": [8388608], "dtype": "float16", "seed": 7018, "dist": "normal", "scale": 1 } },
"outputs": { "y": { "shape": [8388608], "dtype": "float16" } },
"bench": { "metrics": [{ "type": "bandwidth", "value": "args.count * dtypeBytes(args.dtype) * 2" }] }
},
{
"name": "neg-f32-scalar-fallback-8m",
"preset": "edge",
"vars": { "dtype": "float32", "count": 8388607 },
"inputs": { "x": { "shape": [8388607], "dtype": "float32", "dist": "normal", "seed": 7023, "scale": 1 } },
"outputs": { "y": { "shape": [8388607], "dtype": "float32", "dist": "empty" } },
"bench": { "metrics": [{ "type": "bandwidth", "value": "args.count * dtypeBytes(args.dtype) * 2" }] }
}
]
}
|