| 2512 | } |
| 2513 | |
| 2514 | void ExportTensorFlowGraphDef(const Model& model, |
| 2515 | string* output_file_contents) { |
| 2516 | CHECK(output_file_contents->empty()); |
| 2517 | GraphDef tensorflow_graph; |
| 2518 | ExportTensorFlowGraphDefImplementation(model, &tensorflow_graph); |
| 2519 | LogDumpGraphDef(kLogLevelModelChanged, "AT EXPORT", tensorflow_graph); |
| 2520 | CHECK(tensorflow_graph.SerializeToString(output_file_contents)); |
| 2521 | } |
| 2522 | } // namespace toco |
no test coverage detected