aboutsummaryrefslogtreecommitdiff
path: root/tests/validation/CPP/Utils.h
diff options
context:
space:
mode:
authorAbe Mbise <abe.mbise@arm.com>2017-09-01 16:43:47 +0100
committerAnthony Barbier <anthony.barbier@arm.com>2018-11-02 16:35:24 +0000
commit3f0ab6ed8267b1858ec993c1b7bc9715c0991306 (patch)
treee849e7e00c08cde877d03baf5abc225006a435a1 /tests/validation/CPP/Utils.h
parentf4af76e796a57e453f3717cfdf40c8bcf132b62e (diff)
downloadComputeLibrary-3f0ab6ed8267b1858ec993c1b7bc9715c0991306.tar.gz
COMPMID-495: Port Box 3x3 to new validation
Change-Id: I19b359ca37d97382fd516dad75f454857475ef50 Reviewed-on: http://mpd-gerrit.cambridge.arm.com/86178 Reviewed-by: Anthony Barbier <anthony.barbier@arm.com> Tested-by: Kaizen <jeremy.johnson+kaizengerrit@arm.com>
Diffstat (limited to 'tests/validation/CPP/Utils.h')
-rw-r--r--tests/validation/CPP/Utils.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/tests/validation/CPP/Utils.h b/tests/validation/CPP/Utils.h
index 5e9ec822a5..a1de4636ce 100644
--- a/tests/validation/CPP/Utils.h
+++ b/tests/validation/CPP/Utils.h
@@ -46,6 +46,10 @@ T tensor_elem_at(const SimpleTensor<T> &in, Coordinates coord, BorderMode border
template <typename T>
T bilinear_policy(const SimpleTensor<T> &in, Coordinates id, float xn, float yn, BorderMode border_mode, uint8_t constant_border_value);
+
+template <typename T1, typename T2, typename T3>
+void apply_2d_spatial_filter(Coordinates coord, const SimpleTensor<T1> &in, SimpleTensor<T3> &out, const TensorShape &filter_shape, const T2 *filter_itr, float scale, BorderMode border_mode,
+ T1 constant_border_value = 0);
} // namespace validation
} // namespace test
} // namespace arm_compute