| 229 | } |
| 230 | |
| 231 | static void quantize_fp16_with_op_names(program& prog, std::vector<std::string>& names) |
| 232 | { |
| 233 | if(names.empty()) |
| 234 | { |
| 235 | names = {"all"}; |
| 236 | } |
| 237 | |
| 238 | migraphx::quantize_fp16(prog, names); |
| 239 | } |
| 240 | |
| 241 | static void quantize_bf16_with_op_names(program& prog, std::vector<std::string>& names) |
| 242 | { |
nothing calls this directly
no test coverage detected