aboutsummaryrefslogtreecommitdiff
path: root/src/graph/printers/DotGraphPrinter.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/graph/printers/DotGraphPrinter.cpp')
-rw-r--r--src/graph/printers/DotGraphPrinter.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/graph/printers/DotGraphPrinter.cpp b/src/graph/printers/DotGraphPrinter.cpp
index 47b1bb56bf..61cf42356f 100644
--- a/src/graph/printers/DotGraphPrinter.cpp
+++ b/src/graph/printers/DotGraphPrinter.cpp
@@ -164,7 +164,7 @@ void DotGraphPrinter::print_edges(const Graph &g, std::ostream &os)
os << source_node_id << " -> " << sink_node_id << " ";
const Tensor *t = e->tensor();
ARM_COMPUTE_ERROR_ON(t == nullptr);
- os << R"([label = ")" << t->desc().shape << R"( \n )" << t->desc().data_type << R"("])";
+ os << R"([label = ")" << t->desc().shape << R"( \n )" << t->desc().data_type << R"( \n )" << t->desc().layout << R"("])";
os << ";\n";
}
}