| 130 | } // anonymous namespace |
| 131 | |
| 132 | string DumpGraphDefToFile(const string& name, GraphDef const& graph_def, |
| 133 | const string& dirname) { |
| 134 | return WriteTextProtoToUniqueFile(Env::Default(), name, "GraphDef", graph_def, |
| 135 | dirname); |
| 136 | } |
| 137 | |
| 138 | string DumpGraphToFile(const string& name, Graph const& graph, |
| 139 | const FunctionLibraryDefinition* flib_def, |
no test coverage detected