From 6e464c37b5335e362ac3f988cc4b0beed5205ff4 Mon Sep 17 00:00:00 2001 From: Isabella Gottardi Date: Fri, 26 Jan 2018 12:32:45 +0000 Subject: COMPMID-828 - Add support for non square pool size - Part1 Change-Id: Ib8100e7c659c49694c746fa3f36ce20f44f6929f Reviewed-on: https://eu-gerrit-1.euhpc.arm.com/117804 Reviewed-by: Michele DiGiorgio Reviewed-by: Georgios Pinitas Tested-by: Jenkins --- utils/TypePrinter.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'utils') diff --git a/utils/TypePrinter.h b/utils/TypePrinter.h index cab8029199..048df4358b 100644 --- a/utils/TypePrinter.h +++ b/utils/TypePrinter.h @@ -760,7 +760,7 @@ inline std::string to_string(const PoolingLayerInfo &info) if(!info.is_global_pooling()) { str << "," - << "PoolSize=" << info.pool_size() << "," + << "PoolSize=" << info.pool_size().width << "," << info.pool_size().height << "," << "PadStride=" << info.pad_stride_info(); } str << "}"; -- cgit v1.2.1