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

Method print_header

src/graph/printers/DotGraphPrinter.cpp:140–145  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

138}
139
140void DotGraphPrinter::print_header(const Graph &g, std::ostream &os)
141{
142 // Print graph name
143 std::string graph_name = (g.name().empty()) ? "Graph" : g.name();
144 os << "digraph " << graph_name << "{\n";
145}
146
147void DotGraphPrinter::print_footer(const Graph &g, std::ostream &os)
148{

Callers

nothing calls this directly

Calls 2

emptyMethod · 0.45
nameMethod · 0.45

Tested by

no test coverage detected