(self, rank: int)
| 554 | return self.quantization._get_quant_cfg(module_name) |
| 555 | |
| 556 | def set_rank(self, rank: int): |
| 557 | self.mapping.rank = rank |
| 558 | |
| 559 | def get_config_group(self, group_cls: "Type[CG]") -> "CG": |
| 560 | cfg = {k: v for k, v in self.to_dict().items() if k in group_cls.keys()} |
no outgoing calls
no test coverage detected