(self, operations: List[Operation])
| 176 | super().__init__(name='PPQ Quantization Fusion Pass') |
| 177 | |
| 178 | def is_same_platform(self, operations: List[Operation]): |
| 179 | platforms = [operation.platform for operation in operations] |
| 180 | return all([platform == platforms[0] for platform in platforms]) |
| 181 | |
| 182 | @ empty_ppq_cache |
| 183 | def optimize( |