From 3faea25fe0bcb9f72bfe3da185085ed634d1b162 Mon Sep 17 00:00:00 2001 From: Georgios Pinitas Date: Mon, 30 Oct 2017 14:13:50 +0000 Subject: COMPMID-617: Adds validation to CLPoolingLayer Change-Id: Ied405a9c0e9746598d03ac6a944ad87e9b6494eb Reviewed-on: http://mpd-gerrit.cambridge.arm.com/93680 Tested-by: Kaizen Reviewed-by: Anthony Barbier --- utils/TypePrinter.h | 12 ++++++++++++ 1 file changed, 12 insertions(+) (limited to 'utils/TypePrinter.h') diff --git a/utils/TypePrinter.h b/utils/TypePrinter.h index 4fd3c0c027..d956d9ca01 100644 --- a/utils/TypePrinter.h +++ b/utils/TypePrinter.h @@ -27,6 +27,7 @@ #include "arm_compute/core/Dimensions.h" #include "arm_compute/core/Error.h" #include "arm_compute/core/Strides.h" +#include "arm_compute/core/TensorInfo.h" #include "arm_compute/core/Types.h" #include "tests/Types.h" @@ -553,6 +554,17 @@ inline ::std::ostream &operator<<(::std::ostream &os, const InterpolationPolicy return os; } +/** Formatted output of the TensorInfo type. */ +inline std::string to_string(const TensorInfo &info) +{ + std::stringstream str; + str << "{Shape=" << info.tensor_shape() << "," + << "Type=" << info.data_type() << "," + << "Channels=" << info.num_channels() << "," + << "FixedPointPos=" << info.fixed_point_position() << "}"; + return str.str(); +} + //FIXME: Check why this doesn't work and the TensorShape and Coordinates overload are needed template inline std::string to_string(const Dimensions &dimensions) -- cgit v1.2.1