(self, results: List[Argument], meta: NodeMetadata)
| 621 | return self._fx("call_function", operator.getitem, (value, key), {}, meta) |
| 622 | |
| 623 | def output(self, results: List[Argument], meta: NodeMetadata) -> ProxyValue: |
| 624 | return self._fx("output", "output", (results,), {}, meta) |
| 625 | |
| 626 | def call_submodule( |
| 627 | self, graph_module: fx.GraphModule, inputs: Tuple[Argument, ...] |