| 265 | } |
| 266 | |
| 267 | static void quantize_int8_wrap(program& prog, const target& t, quantize_int8_options& options) |
| 268 | { |
| 269 | if(options.op_names.empty()) |
| 270 | { |
| 271 | options.op_names = {"dot", "convolution"}; |
| 272 | } |
| 273 | |
| 274 | migraphx::quantize_int8(prog, t, options.calibration, options.op_names); |
| 275 | } |
| 276 | |
| 277 | struct quantize_fp8_options |
| 278 | { |
nothing calls this directly
no test coverage detected