(self, command: GraphCommand)
| 508 | ] |
| 509 | |
| 510 | def process(self, command: GraphCommand) -> Any: |
| 511 | if command.command_type == GraphCommandType.FUSE_BN: |
| 512 | return self.fuse_bn() |
| 513 | if command.command_type == GraphCommandType.FUSE_BIAS_ADD: |
| 514 | return self.fuse_bias_add() |
| 515 | |
| 516 | |
| 517 | def fuse_bn(self): |
no test coverage detected