(self, results: list[ProxyValue])
| 72 | |
| 73 | # pyre-ignore[14]: Inconsistent override. |
| 74 | def output(self, results: list[ProxyValue]) -> ProxyValue: |
| 75 | logging.debug(f"Creating outputs {results}") |
| 76 | return super().output(results, NodeMetadata({})) |
| 77 | |
| 78 | def get_graph_module(self) -> torch.fx.GraphModule: |
| 79 | return torch.fx.GraphModule(self.tracer.root, self.tracer.graph) |