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

Function PrintEdges

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

Source from the content-addressed store, hash-verified

66}
67
68static 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
78static void PrintGCEdges(Nodes *nodes, tensorflow::GraphCycles *gc) {
79 LOG(INFO) << "GC EDGES";

Callers 3

CheckTransitiveClosureFunction · 0.85
CheckEdgesFunction · 0.85
TESTFunction · 0.85

Calls 1

sizeMethod · 0.45

Tested by

no test coverage detected