| 20 | QuantizeDriver::QuantizeDriver(const mllm::ParameterFile::ptr_t& params, mllm::ConfigFile& cfg) : params_(params), cfg_(cfg) {} |
| 21 | |
| 22 | void QuantizeDriver::registerQuantizeImpl(const QuantizeImpl::ptr_t& impl) { quantize_impls_.emplace_back(impl); } |
| 23 | |
| 24 | void QuantizeDriver::operator()() { |
| 25 | std::vector<std::pair<QuantizeDescriptor, std::unordered_map<std::string, mllm::ParameterFile::ptr_t>>> param_groups; |