(self, *args, **kwargs)
| 110 | self._enable_shared = enabled |
| 111 | |
| 112 | def __call__(self, *args, **kwargs): |
| 113 | graph = self.get_graph(*args, **kwargs) |
| 114 | with AvoidRecursiveCacheCall(graph): |
| 115 | return graph(*args, **kwargs) |
| 116 | |
| 117 | def _compile(self, *args, **kwargs): |
| 118 | graph = self.get_graph(*args, **kwargs) |
nothing calls this directly
no test coverage detected