MCPcopy Create free account
hub / github.com/ARM-software/ComputeLibrary / print

Method print

src/graph/printers/DotGraphPrinter.cpp:125–138  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

123}
124
125void DotGraphPrinter::print(const Graph &g, std::ostream &os)
126{
127 // Print header
128 print_header(g, os);
129
130 // Print nodes
131 print_nodes(g, os);
132
133 // Print edges
134 print_edges(g, os);
135
136 // Print footer
137 print_footer(g, os);
138}
139
140void DotGraphPrinter::print_header(const Graph &g, std::ostream &os)
141{

Callers 1

execute_taskFunction · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected