Disables tracing of op execution via RunMetadata.
(self)
| 1430 | pywrap_tensorflow.TFE_ContextEnableRunMetadata(self._handle) |
| 1431 | |
| 1432 | def disable_run_metadata(self): |
| 1433 | """Disables tracing of op execution via RunMetadata.""" |
| 1434 | if not self._context_handle: |
| 1435 | return |
| 1436 | pywrap_tensorflow.TFE_ContextDisableRunMetadata(self._context_handle) |
| 1437 | |
| 1438 | def enable_graph_collection(self): |
| 1439 | """Enables graph collection of executed functions. |
no outgoing calls