aboutsummaryrefslogtreecommitdiff
path: root/tests/validation/ReferenceCPP.cpp
diff options
context:
space:
mode:
authorGiorgio Arena <giorgio.arena@arm.com>2017-06-14 13:40:36 +0100
committerAnthony Barbier <anthony.barbier@arm.com>2018-09-17 14:16:42 +0100
commit935deee193c1a7597e358ebbe50a9aeff14dcb3d (patch)
treef474d4d611c11d9877b970bc9b8efa289c3b67ce /tests/validation/ReferenceCPP.cpp
parentb49a7153c901b5c523a3d07815b79a4f460533b1 (diff)
downloadComputeLibrary-935deee193c1a7597e358ebbe50a9aeff14dcb3d.tar.gz
COMPMID-378 CLMinMaxLocation testing completed.
Change-Id: I3d35544fab22ab2aa99d9250db3df2f88af8196c Reviewed-on: http://mpd-gerrit.cambridge.arm.com/77670 Tested-by: Kaizen <jeremy.johnson+kaizengerrit@arm.com> Reviewed-by: Steven Niu <steven.niu@arm.com>
Diffstat (limited to 'tests/validation/ReferenceCPP.cpp')
-rw-r--r--tests/validation/ReferenceCPP.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/validation/ReferenceCPP.cpp b/tests/validation/ReferenceCPP.cpp
index a1dc4ceeac..07801aba1c 100644
--- a/tests/validation/ReferenceCPP.cpp
+++ b/tests/validation/ReferenceCPP.cpp
@@ -71,7 +71,7 @@ void ReferenceCPP::sobel_5x5(RawTensor &src, RawTensor &dst_x, RawTensor &dst_y,
}
// Minimum maximum location
-void ReferenceCPP::min_max_location(const RawTensor &src, int32_t &min, int32_t &max, Coordinates2DArray &min_loc, Coordinates2DArray &max_loc, uint32_t &min_count, uint32_t &max_count)
+void ReferenceCPP::min_max_location(const RawTensor &src, int32_t &min, int32_t &max, IArray<Coordinates2D> &min_loc, IArray<Coordinates2D> &max_loc, uint32_t &min_count, uint32_t &max_count)
{
const TensorVariant s = TensorFactory::get_tensor(src);
boost::apply_visitor(tensor_visitors::min_max_location_visitor(min, max, min_loc, max_loc, min_count, max_count), s);