aboutsummaryrefslogtreecommitdiff
path: root/utils
diff options
context:
space:
mode:
authorJohn Richardson <john.richardson@arm.com>2017-09-18 16:10:48 +0100
committerAnthony Barbier <anthony.barbier@arm.com>2018-11-02 16:35:24 +0000
commitdd715f2a88827241a3fb9e4a2d8be82455f649f7 (patch)
tree2353cbe326073870877e5e8211a7760a743eb919 /utils
parentf5f34bb068565bf9435ba5561aae1c9280db8bbe (diff)
downloadComputeLibrary-dd715f2a88827241a3fb9e4a2d8be82455f649f7.tar.gz
COMPMID-505: Move PixelWiseMultiplication to new validation
Change-Id: I4daff53f5ee7f0393451425ba20aee1013466954 Reviewed-on: http://mpd-gerrit.cambridge.arm.com/89200 Tested-by: Kaizen <jeremy.johnson+kaizengerrit@arm.com> Reviewed-by: Anthony Barbier <anthony.barbier@arm.com>
Diffstat (limited to 'utils')
-rw-r--r--utils/TypePrinter.h7
1 files changed, 7 insertions, 0 deletions
diff --git a/utils/TypePrinter.h b/utils/TypePrinter.h
index b072d1a308..2fa3d0ea4b 100644
--- a/utils/TypePrinter.h
+++ b/utils/TypePrinter.h
@@ -311,6 +311,13 @@ inline ::std::ostream &operator<<(::std::ostream &os, const PoolingLayerInfo &in
return os;
}
+inline std::string to_string(const RoundingPolicy &rounding_policy)
+{
+ std::stringstream str;
+ str << rounding_policy;
+ return str.str();
+}
+
/** Formatted output of the DataType type. */
inline ::std::ostream &operator<<(::std::ostream &os, const DataType &data_type)
{