MCPcopy Create free account
hub / github.com/DeepRec-AI/DeepRec / PrintGCEdges

Function PrintGCEdges

tensorflow/compiler/jit/graphcycles/graphcycles_test.cc:78–90  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

76}
77
78static void PrintGCEdges(Nodes *nodes, tensorflow::GraphCycles *gc) {
79 LOG(INFO) << "GC EDGES";
80 for (int i = 0; i != nodes->size(); i++) {
81 for (int j = 0; j != nodes->size(); j++) {
82 int a = (*nodes)[i];
83 int b = (*nodes)[j];
84 if (gc->HasEdge(a, b)) {
85 LOG(INFO) << a << " " << b;
86 }
87 }
88 }
89 LOG(INFO) << "---";
90}
91
92static void PrintTransitiveClosure(Nodes *nodes, Edges *edges,
93 tensorflow::GraphCycles *gc) {

Callers 3

CheckTransitiveClosureFunction · 0.85
CheckEdgesFunction · 0.85
TESTFunction · 0.85

Calls 2

sizeMethod · 0.45
HasEdgeMethod · 0.45

Tested by

no test coverage detected