Remove a function from the context. Once removed, the function cannot be executed anymore. Args: name: function signature name.
(self, name)
| 992 | self._handle, fdef_string, len(fdef_string)) |
| 993 | |
| 994 | def remove_function(self, name): |
| 995 | """Remove a function from the context. |
| 996 | |
| 997 | Once removed, the function cannot be executed anymore. |
| 998 | |
| 999 | Args: |
| 1000 | name: function signature name. |
| 1001 | """ |
| 1002 | self.ensure_initialized() |
| 1003 | pywrap_tensorflow.TFE_ContextRemoveFunction(self._handle, name) |
| 1004 | |
| 1005 | def has_function(self, name): |
| 1006 | """Check if a function `name` is registered.""" |
no test coverage detected