aboutsummaryrefslogtreecommitdiff
path: root/tests/TypePrinter.h
diff options
context:
space:
mode:
authorIsabella Gottardi <isabella.gottardi@arm.com>2017-06-22 11:05:41 +0100
committerAnthony Barbier <anthony.barbier@arm.com>2018-09-17 14:15:05 +0100
commit3b77e9df5d2d33bda0500235d3f258f3197037de (patch)
treef99c3fa58483b9992eae4cdd9f2978c2f278404b /tests/TypePrinter.h
parent3eb263e95898c933cde5450a919a161ac6b2359b (diff)
downloadComputeLibrary-3b77e9df5d2d33bda0500235d3f258f3197037de.tar.gz
COMPMID-378 - Implemented reference implementation and tests (NEON and CL) for Non Linear Filter
Change-Id: I1b81e030a27cf01d098247a87d047099616e2a39 Reviewed-on: http://mpd-gerrit.cambridge.arm.com/78531 Reviewed-by: Moritz Pflanzer <moritz.pflanzer@arm.com> Tested-by: Kaizen <jeremy.johnson+kaizengerrit@arm.com>
Diffstat (limited to 'tests/TypePrinter.h')
-rw-r--r--tests/TypePrinter.h45
1 files changed, 45 insertions, 0 deletions
diff --git a/tests/TypePrinter.h b/tests/TypePrinter.h
index 3d5a19981f..d76754448e 100644
--- a/tests/TypePrinter.h
+++ b/tests/TypePrinter.h
@@ -86,6 +86,51 @@ inline ::std::ostream &operator<<(::std::ostream &os, const BorderMode &mode)
return os;
}
+/** Formatted output of the NonLinearFilterFunction type. */
+inline ::std::ostream &operator<<(::std::ostream &os, const NonLinearFilterFunction &function)
+{
+ switch(function)
+ {
+ case NonLinearFilterFunction::MAX:
+ os << "MAX";
+ break;
+ case NonLinearFilterFunction::MEDIAN:
+ os << "MEDIAN";
+ break;
+ case NonLinearFilterFunction::MIN:
+ os << "MIN";
+ break;
+ default:
+ ARM_COMPUTE_ERROR("NOT_SUPPORTED!");
+ }
+
+ return os;
+}
+
+/** Formatted output of the MatrixPattern type. */
+inline ::std::ostream &operator<<(::std::ostream &os, const MatrixPattern &pattern)
+{
+ switch(pattern)
+ {
+ case MatrixPattern::BOX:
+ os << "BOX";
+ break;
+ case MatrixPattern::CROSS:
+ os << "CROSS";
+ break;
+ case MatrixPattern::DISK:
+ os << "DISK";
+ break;
+ case MatrixPattern::OTHER:
+ os << "OTHER";
+ break;
+ default:
+ ARM_COMPUTE_ERROR("NOT_SUPPORTED!");
+ }
+
+ return os;
+}
+
/** Formatted output of the InterpolationPolicy type. */
inline ::std::ostream &operator<<(::std::ostream &os, const InterpolationPolicy &policy)
{