aboutsummaryrefslogtreecommitdiff
path: root/tests/Types.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 /tests/Types.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 'tests/Types.h')
-rw-r--r--tests/Types.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/tests/Types.h b/tests/Types.h
index 8f47902e3e..acd82afb60 100644
--- a/tests/Types.h
+++ b/tests/Types.h
@@ -42,6 +42,14 @@ enum class FixedPointOp
RECIPROCAL /**< Reciprocal */
};
+/** Gradient dimension type. */
+enum class GradientDimension
+{
+ GRAD_X, /**< x gradient dimension */
+ GRAD_Y, /**< y gradient dimension */
+ GRAD_XY, /**< x and y gradient dimension */
+};
+
template <typename MinMaxType>
struct MinMaxLocationValues
{