From 188708170a51887868a7170c9ee963372bfb9ced Mon Sep 17 00:00:00 2001 From: giuros01 Date: Thu, 13 Sep 2018 09:31:40 +0100 Subject: [COMPMID-1331] Add support for RoIAlign operator in CL Change-Id: Ie215daacd10477309dbf8af1bb2b05b7a0a8f203 Reviewed-on: https://eu-gerrit-1.euhpc.arm.com/150773 Tested-by: bsgcomp Reviewed-by: Isabella Gottardi Reviewed-by: Pablo Tello --- utils/TypePrinter.h | 13 +++++++++++++ 1 file changed, 13 insertions(+) (limited to 'utils') diff --git a/utils/TypePrinter.h b/utils/TypePrinter.h index d31c16c32b..10e407ddfa 100644 --- a/utils/TypePrinter.h +++ b/utils/TypePrinter.h @@ -220,6 +220,19 @@ inline ::std::ostream &operator<<(::std::ostream &os, const ROIPoolingLayerInfo return os; } +/** Formatted output of the ROIPoolingInfo type. + * + * @param[in] pool_info Type to output. + * + * @return Formatted string. + */ +inline std::string to_string(const ROIPoolingLayerInfo &pool_info) +{ + std::stringstream str; + str << pool_info; + return str.str(); +} + /** Formatted output of the QuantizationInfo type. * * @param[out] os Output stream. -- cgit v1.2.1