| 74 | } |
| 75 | |
| 76 | void VLogGraphIfAsked(const Graph& graph) { |
| 77 | if (VLOG_IS_ON(3)) { |
| 78 | GraphDef graph_def; |
| 79 | graph.ToGraphDef(&graph_def); |
| 80 | string serialized; |
| 81 | ::tensorflow::protobuf::TextFormat::PrintToString(graph_def, &serialized); |
| 82 | LOG(INFO) << serialized; |
| 83 | } |
| 84 | } |
| 85 | |
| 86 | struct InductionVarInfo { |
| 87 | Output induction_var; |