| 239 | } |
| 240 | |
| 241 | static void quantize_bf16_with_op_names(program& prog, std::vector<std::string>& names) |
| 242 | { |
| 243 | if(names.empty()) |
| 244 | { |
| 245 | names = {"all"}; |
| 246 | } |
| 247 | |
| 248 | migraphx::quantize_bf16(prog, names); |
| 249 | } |
| 250 | |
| 251 | struct quantize_int8_options |
| 252 | { |
nothing calls this directly
no test coverage detected