(node: torch.fx.Node)
| 328 | missing_out_vars: Set[str] = set() |
| 329 | |
| 330 | def get_submodule(node: torch.fx.Node) -> torch.fx.GraphModule: |
| 331 | assert node.op == "get_attr" |
| 332 | return getattr(graph_module, node.target) |
| 333 | |
| 334 | for node in graph_module.graph.nodes: |
| 335 | if node.op != "call_function": |
no outgoing calls
no test coverage detected