| 187 | } |
| 188 | |
| 189 | void quantize_int4_weights(program& prog) |
| 190 | { |
| 191 | run_passes(prog, {normalize_ops{}, optimize_module{}, quantize_int4_pass{}}, quant_tracer()); |
| 192 | } |
| 193 | |
| 194 | void quantize_fp8(program& prog, const target& t, const std::vector<parameter_map>& calibration) |
| 195 | { |
no test coverage detected