Enables tracing of op execution via RunMetadata. To retrieve the accumulated metadata call context.export_run_metadata() and to stop tracing call context.disable_run_metadata().
()
| 1824 | |
| 1825 | |
| 1826 | def enable_run_metadata(): |
| 1827 | """Enables tracing of op execution via RunMetadata. |
| 1828 | |
| 1829 | To retrieve the accumulated metadata call context.export_run_metadata() |
| 1830 | and to stop tracing call context.disable_run_metadata(). |
| 1831 | """ |
| 1832 | context().enable_run_metadata() |
| 1833 | |
| 1834 | |
| 1835 | def disable_run_metadata(): |
nothing calls this directly
no test coverage detected