Enables graph collection of executed functions. To retrieve the accumulated graphs call context.export_run_metadata() and to stop collecting graphs call context.disable_graph_collection().
()
| 1838 | |
| 1839 | |
| 1840 | def enable_graph_collection(): |
| 1841 | """Enables graph collection of executed functions. |
| 1842 | |
| 1843 | To retrieve the accumulated graphs call context.export_run_metadata() |
| 1844 | and to stop collecting graphs call context.disable_graph_collection(). |
| 1845 | """ |
| 1846 | context().enable_graph_collection() |
| 1847 | |
| 1848 | |
| 1849 | def disable_graph_collection(): |
nothing calls this directly
no test coverage detected