/* Copyright 2017 The TensorFlow Authors. All Rights Reserved. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. ==============================================================================*/ // Helper functions for dumping Graphs, GraphDefs, and FunctionDefs to files for // debugging. #ifndef TENSORFLOW_COMPILER_TF2XLA_DUMP_GRAPH_H_ #define TENSORFLOW_COMPILER_TF2XLA_DUMP_GRAPH_H_ #include "tensorflow/core/framework/function.h" #include "tensorflow/core/framework/graph.pb.h" #include "tensorflow/core/graph/graph.h" namespace tensorflow { namespace dump_graph { // Dumps 'graph_def' to a file, as a GraphDef text proto. Returns the file name // chosen. // // Automatically picks a file name. Prefixes 'name' with the value of the // --tf_dump_graph_prefix flag and suffixes it with ".pbtxt" to form a name. // If a graph has already been dumped by this process with the same name, // suffixes with "_n.pbtxt", where 'n' is a sequence number. string DumpGraphDefToFile(const string& name, GraphDef const& graph_def); // Similar to DumpGraphDefToFile, but builds the GraphDef to dump from a 'graph' // and an optional function library 'flib_def'. Returns the file name chosen. string DumpGraphToFile(const string& name, Graph const& graph, const FunctionLibraryDefinition* flib_def = nullptr); // Similar to DumpGraphDefToFile, but dumps a function as a FunctionDef text // proto. Returns the file name chosen. string DumpFunctionDefToFile(const string& name, FunctionDef const& fdef); } // namespace dump_graph } // namespace tensorflow #endif // TENSORFLOW_COMPILER_TF2XLA_DUMP_GRAPH_H_