(
self,
graph_module: torch.fx.GraphModule,
graph_signature: Optional[ExportGraphSignature] = None,
)
| 245 | return super().run(graph_module) |
| 246 | |
| 247 | def run( |
| 248 | self, |
| 249 | graph_module: torch.fx.GraphModule, |
| 250 | graph_signature: Optional[ExportGraphSignature] = None, |
| 251 | ) -> PassResult: |
| 252 | return self.call(graph_module) |
| 253 | |
| 254 | |
| 255 | class MultiplePoolsToyModel(torch.nn.Module): |
no test coverage detected