| 137 | |
| 138 | |
| 139 | class QuantizeOperationCommand(GraphCommand): |
| 140 | def __init__(self, op_name: str, target_platform: TargetPlatform, config: OperationQuantizationConfig) -> None: |
| 141 | super().__init__(command_type=GraphCommandType.QUANTIZE_OPERATION) |
| 142 | self.op_name = op_name |
| 143 | self.target_platform = target_platform |
| 144 | self.config = config |
| 145 | |
| 146 | |
| 147 | class ReplaceOperationCommand(GraphCommand): |