Verifies the graph meets expected criteria. :param graph: The FX graph to verify :raises AssertionError: If the graph does not meet expectations
(self, graph: Graph)
| 46 | |
| 47 | @abc.abstractmethod |
| 48 | def verify_graph(self, graph: Graph): |
| 49 | """Verifies the graph meets expected criteria. |
| 50 | |
| 51 | :param graph: The FX graph to verify |
| 52 | :raises AssertionError: If the graph does not meet expectations |
| 53 | """ |
| 54 | pass |
| 55 | |
| 56 | |
| 57 | class BaseGraphVerifier(GraphVerifier): |
no outgoing calls