(self, *args, **kwargs)
| 115 | return graph(*args, **kwargs) |
| 116 | |
| 117 | def _compile(self, *args, **kwargs): |
| 118 | graph = self.get_graph(*args, **kwargs) |
| 119 | with AvoidRecursiveCacheCall(graph): |
| 120 | return graph._compile(*args, **kwargs) |
| 121 | |
| 122 | def runtime_state_dict( |
| 123 | self, destination=None, with_eager=False, |
nothing calls this directly
no test coverage detected