(self, state)
| 90 | return state |
| 91 | |
| 92 | def __setstate__(self, state): |
| 93 | self.quantizer = state["quantizer"] |
| 94 | self.quantization_config = state["quantization_config"] |
| 95 | self.data = state["data"] |
| 96 | self.requires_grad = state["requires_grad"] |
| 97 | |
| 98 | def __deepcopy__(self, memo): |
| 99 | new_instance = type(self).__new__(type(self)) |
no outgoing calls
no test coverage detected