aboutsummaryrefslogtreecommitdiff
path: root/tests/validation/Reference.h
diff options
context:
space:
mode:
authorGiorgio Arena <giorgio.arena@arm.com>2017-06-19 17:05:30 +0100
committerAnthony Barbier <anthony.barbier@arm.com>2018-09-17 14:14:20 +0100
commit50f9fd73536fd359137702ac9c42c9a1c61ff415 (patch)
tree3b41b943be044d3f01fe624a419649f87c2e1738 /tests/validation/Reference.h
parentbee466b5eac4ec39d4032d946c9a4aee051f2b31 (diff)
downloadComputeLibrary-50f9fd73536fd359137702ac9c42c9a1c61ff415.tar.gz
COMPMID-378 NEON/CL Sobel 3x3 and 5x5 tests.
Change-Id: Ic90edd77c7f694f95663d8163623db3837a48616 Reviewed-on: http://mpd-gerrit.cambridge.arm.com/78284 Tested-by: Kaizen <jeremy.johnson+kaizengerrit@arm.com> Reviewed-by: Moritz Pflanzer <moritz.pflanzer@arm.com>
Diffstat (limited to 'tests/validation/Reference.h')
-rw-r--r--tests/validation/Reference.h18
1 files changed, 18 insertions, 0 deletions
diff --git a/tests/validation/Reference.h b/tests/validation/Reference.h
index 06a38c41f2..4cfd3c24c8 100644
--- a/tests/validation/Reference.h
+++ b/tests/validation/Reference.h
@@ -37,6 +37,24 @@ namespace validation
class Reference
{
public:
+ /** Compute reference sobel 3x3.
+ *
+ * @param[in] shape Shape of the input and output tensors.
+ * @param[in] border_mode Border mode to use for input tensor
+ * @param[in] constant_border_value Constant value to use if @p border_mode is constant
+ *
+ * @return Computed raw tensors along x and y axis.
+ */
+ static std::pair<RawTensor, RawTensor> compute_reference_sobel_3x3(const TensorShape &shape, BorderMode border_mode, uint8_t constant_border_value);
+ /** Compute reference sobel 5x5.
+ *
+ * @param[in] shape Shape of the input and output tensors.
+ * @param[in] border_mode Border mode to use for input tensor
+ * @param[in] constant_border_value Constant value to use if @p border_mode is constant
+ *
+ * @return Computed raw tensors along x and y axis.
+ */
+ static std::pair<RawTensor, RawTensor> compute_reference_sobel_5x5(const TensorShape &shape, BorderMode border_mode, uint8_t constant_border_value);
/** Compute reference mean and standard deviation.
*
* @param[in] shape Shape of the input tensors.