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.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/graph/printers/DotGraphPrinter.cpp b/src/graph/printers/DotGraphPrinter.cpp
index 46f6ee828e..40890880fd 100644
--- a/src/graph/printers/DotGraphPrinter.cpp
+++ b/src/graph/printers/DotGraphPrinter.cpp
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 2018-2019 ARM Limited.
+ * Copyright (c) 2018-2020 ARM Limited.
*
* SPDX-License-Identifier: MIT
*
@@ -103,11 +103,11 @@ void DotGraphVisitor::visit(NormalizationLayerNode &n)
void DotGraphVisitor::visit(PoolingLayerNode &n)
{
std::stringstream ss;
- ss << n.pooling_info().pool_type();
+ ss << n.pooling_info().pool_type;
ss << R"( \n )";
- ss << n.pooling_info().pool_size();
+ ss << n.pooling_info().pool_size;
ss << R"( \n )";
- ss << n.pooling_info().pad_stride_info();
+ ss << n.pooling_info().pad_stride_info;
_info = ss.str();
}