(self)
| 175 | return ret |
| 176 | |
| 177 | def copy(self): |
| 178 | return QuantableOperation( |
| 179 | convert_from=super().copy(), |
| 180 | quantize_config=self.config.copy(), |
| 181 | platform=self.platform) |
| 182 | |
| 183 | |
| 184 | class QuantableVariable(Variable): |
nothing calls this directly
no test coverage detected