From d466c2d25346ec0b4ed1cc122de93c54534107b3 Mon Sep 17 00:00:00 2001 From: Michalis Spyrou Date: Tue, 30 Jan 2018 10:54:39 +0000 Subject: COMPMID-833 Direct convolution, Normalization and Fully Connected test names are not unique Change-Id: Ie4654cc1cb4720c51a3114162043562d5cbc6d28 Reviewed-on: https://eu-gerrit-1.euhpc.arm.com/118126 Reviewed-by: Georgios Pinitas Tested-by: Jenkins --- utils/TypePrinter.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'utils') diff --git a/utils/TypePrinter.h b/utils/TypePrinter.h index 5805ee6ed0..cab8029199 100644 --- a/utils/TypePrinter.h +++ b/utils/TypePrinter.h @@ -1,5 +1,5 @@ /* - * Copyright (c) 2017, 2018 ARM Limited. + * Copyright (c) 2017-2018 ARM Limited. * * SPDX-License-Identifier: MIT * @@ -290,14 +290,14 @@ inline ::std::ostream &operator<<(::std::ostream &os, const NormType &norm_type) inline std::string to_string(const arm_compute::NormalizationLayerInfo &info) { std::stringstream str; - str << info.type(); + str << info.type() << ":NormSize=" << info.norm_size(); return str.str(); } /** Formatted output of @ref NormalizationLayerInfo. */ inline ::std::ostream &operator<<(::std::ostream &os, const NormalizationLayerInfo &info) { - os << info.type(); + os << info.type() << ":NormSize=" << info.norm_size(); return os; } -- cgit v1.2.1