aboutsummaryrefslogtreecommitdiff
path: root/utils
diff options
context:
space:
mode:
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;
}