aboutsummaryrefslogtreecommitdiff
path: root/utils
diff options
context:
space:
mode:
authorMichalis Spyrou <michalis.spyrou@arm.com>2018-01-30 10:54:39 +0000
committerAnthony Barbier <anthony.barbier@arm.com>2018-11-02 16:45:00 +0000
commitd466c2d25346ec0b4ed1cc122de93c54534107b3 (patch)
tree98a86b821f0c4f2461f2eab60e499f45fcd02191 /utils
parentc0079e9380c0d3963fd3ff9a775b4914169c975f (diff)
downloadComputeLibrary-d466c2d25346ec0b4ed1cc122de93c54534107b3.tar.gz
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 <georgios.pinitas@arm.com> Tested-by: Jenkins <bsgcomp@arm.com>
Diffstat (limited to 'utils')
-rw-r--r--utils/TypePrinter.h6
1 files changed, 3 insertions, 3 deletions
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;
}