Calls a graph function specialized to the inputs.
(self, *args, **kwargs)
| 1817 | self._descriptor_cache = weakref.WeakKeyDictionary() |
| 1818 | |
| 1819 | def __call__(self, *args, **kwargs): |
| 1820 | """Calls a graph function specialized to the inputs.""" |
| 1821 | graph_function, args, kwargs = self._maybe_define_function(args, kwargs) |
| 1822 | return graph_function._filtered_call(args, kwargs) # pylint: disable=protected-access |
| 1823 | |
| 1824 | @property |
| 1825 | def python_function(self): |
nothing calls this directly
no test coverage detected