From 0cb3da671b652641deff909a21f6e45a550452f1 Mon Sep 17 00:00:00 2001 From: Sang-Hoon Park Date: Wed, 15 Jan 2020 12:39:56 +0000 Subject: COMPMID-2985 change PoolingLayerInfo to struct Change-Id: I489205c2b65ec82c6d3da4df39c356a53265556b Signed-off-by: Sang-Hoon Park Reviewed-on: https://review.mlplatform.org/c/2597 Tested-by: Arm Jenkins Reviewed-by: Giorgio Arena Comments-Addressed: Arm Jenkins --- src/graph/printers/DotGraphPrinter.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'src/graph/printers/DotGraphPrinter.cpp') 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(); } -- cgit v1.2.1