aboutsummaryrefslogtreecommitdiff
path: root/tests/TypePrinter.h
diff options
context:
space:
mode:
authorMoritz Pflanzer <moritz.pflanzer@arm.com>2017-08-31 17:10:18 +0100
committerAnthony Barbier <anthony.barbier@arm.com>2018-11-02 16:35:24 +0000
commit95643d83d8f4d0431b3983f771ca749963f6a966 (patch)
tree05b890a7fcaca77e10c665ffb9f883aee040479c /tests/TypePrinter.h
parenta230e0aa44409ea33085634764922ba617a15394 (diff)
downloadComputeLibrary-95643d83d8f4d0431b3983f771ca749963f6a966.tar.gz
COMPMID-417: Fix benchmark tests
Change-Id: I4c4786c38fd3381015abbb9f1ef5612c712594b6 Reviewed-on: http://mpd-gerrit.cambridge.arm.com/86019 Tested-by: Kaizen <jeremy.johnson+kaizengerrit@arm.com> Reviewed-by: SiCong Li <sicong.li@arm.com>
Diffstat (limited to 'tests/TypePrinter.h')
-rw-r--r--tests/TypePrinter.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/TypePrinter.h b/tests/TypePrinter.h
index 394ee9d87c..c207c1d634 100644
--- a/tests/TypePrinter.h
+++ b/tests/TypePrinter.h
@@ -360,7 +360,7 @@ inline std::string to_string(const PoolingType &type)
/** Formatted output of @ref PoolingLayerInfo. */
inline ::std::ostream &operator<<(::std::ostream &os, const PoolingLayerInfo &info)
{
- os << info.pool_type();
+ os << info.pool_type() << ";" << info.pool_size() << ";" << info.pad_stride_info();
return os;
}