| 66 | } |
| 67 | |
| 68 | static void PrintEdges(Edges *edges) { |
| 69 | LOG(INFO) << "EDGES (" << edges->size() << ")"; |
| 70 | for (int i = 0; i != edges->size(); i++) { |
| 71 | int a = (*edges)[i].from; |
| 72 | int b = (*edges)[i].to; |
| 73 | LOG(INFO) << a << " " << b; |
| 74 | } |
| 75 | LOG(INFO) << "---"; |
| 76 | } |
| 77 | |
| 78 | static void PrintGCEdges(Nodes *nodes, tensorflow::GraphCycles *gc) { |
| 79 | LOG(INFO) << "GC EDGES"; |
no test coverage detected