Returns a RunMetadata proto with accumulated information. The returned protocol buffer contains information since the most recent call to either enable_run_metadata or export_run_metadata. Returns: A RunMetadata protocol buffer.
()
| 1852 | |
| 1853 | |
| 1854 | def export_run_metadata(): |
| 1855 | """Returns a RunMetadata proto with accumulated information. |
| 1856 | |
| 1857 | The returned protocol buffer contains information since the most recent call |
| 1858 | to either enable_run_metadata or export_run_metadata. |
| 1859 | |
| 1860 | Returns: |
| 1861 | A RunMetadata protocol buffer. |
| 1862 | """ |
| 1863 | return context().export_run_metadata() |
| 1864 | |
| 1865 | |
| 1866 | def set_server_def(server_def): |
nothing calls this directly
no test coverage detected