aboutsummaryrefslogtreecommitdiff
path: root/utils/TypePrinter.h
diff options
context:
space:
mode:
authorJohn Richardson <john.richardson@arm.com>2017-11-01 10:57:48 +0000
committerAnthony Barbier <anthony.barbier@arm.com>2018-11-02 16:35:24 +0000
commit1c529921eb9997a0328902b71af3361b96a7f09e (patch)
treecc0e8685e87f75a2fa9596bdebba04c7d192a21d /utils/TypePrinter.h
parente10bddb1ef0fff659f4bf93a13d8cdc73dd2edce (diff)
downloadComputeLibrary-1c529921eb9997a0328902b71af3361b96a7f09e.tar.gz
COMPMID-562: Port Schaar to new validation
Change-Id: Ia59c5ac7b6ab7a53fb73103539984e310b918fca Reviewed-on: http://mpd-gerrit.cambridge.arm.com/94616 Tested-by: Kaizen <jeremy.johnson+kaizengerrit@arm.com> Reviewed-by: Georgios Pinitas <georgios.pinitas@arm.com>
Diffstat (limited to 'utils/TypePrinter.h')
-rw-r--r--utils/TypePrinter.h28
1 files changed, 28 insertions, 0 deletions
diff --git a/utils/TypePrinter.h b/utils/TypePrinter.h
index 50da59329a..2d5c618bce 100644
--- a/utils/TypePrinter.h
+++ b/utils/TypePrinter.h
@@ -794,5 +794,33 @@ inline std::string to_string(const arm_compute::MagnitudeType &type)
str << type;
return str.str();
}
+
+/** Formatted output of the GradientDimension type. */
+inline ::std::ostream &operator<<(::std::ostream &os, const GradientDimension &dim)
+{
+ switch(dim)
+ {
+ case GradientDimension::GRAD_X:
+ os << "GRAD_X";
+ break;
+ case GradientDimension::GRAD_Y:
+ os << "GRAD_Y";
+ break;
+ case GradientDimension::GRAD_XY:
+ os << "GRAD_XY";
+ break;
+ default:
+ ARM_COMPUTE_ERROR("NOT_SUPPORTED!");
+ }
+
+ return os;
+}
+
+inline std::string to_string(const arm_compute::GradientDimension &type)
+{
+ std::stringstream str;
+ str << type;
+ return str.str();
+}
} // namespace arm_compute
#endif /* __ARM_COMPUTE_TEST_TYPE_PRINTER_H__ */