From 64856912aa5a5b31ef3cf35b3e0a94615ea0968f Mon Sep 17 00:00:00 2001 From: Alex Gilday Date: Fri, 5 Jan 2018 10:10:28 +0000 Subject: COMPMID-773: Add CL/NEON Harris Corners benchmark tests Change-Id: Idf452cfa0428a36f2d718a6d438d6e59897e1e99 Reviewed-on: https://eu-gerrit-1.euhpc.arm.com/115061 Reviewed-by: Georgios Pinitas Reviewed-by: Pablo Tello Tested-by: Jenkins --- arm_compute/runtime/CL/functions/CLHarrisCorners.h | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'arm_compute/runtime/CL/functions/CLHarrisCorners.h') diff --git a/arm_compute/runtime/CL/functions/CLHarrisCorners.h b/arm_compute/runtime/CL/functions/CLHarrisCorners.h index e09e67060f..4cb7fbd307 100644 --- a/arm_compute/runtime/CL/functions/CLHarrisCorners.h +++ b/arm_compute/runtime/CL/functions/CLHarrisCorners.h @@ -1,5 +1,5 @@ /* - * Copyright (c) 2016, 2017 ARM Limited. + * Copyright (c) 2016-2018 ARM Limited. * * SPDX-License-Identifier: MIT * @@ -77,10 +77,11 @@ public: * @param[out] corners Array of keypoints to store the results. * @param[in] border_mode Border mode to use * @param[in] constant_border_value (Optional) Constant value to use for borders if border_mode is set to CONSTANT. + * @param[in] use_fp16 (Optional) If true the FP16 kernels will be used. If false F32 kernels are used. */ void configure(ICLImage *input, float threshold, float min_dist, float sensitivity, int32_t gradient_size, int32_t block_size, ICLKeyPointArray *corners, - BorderMode border_mode, uint8_t constant_border_value = 0); + BorderMode border_mode, uint8_t constant_border_value = 0, bool use_fp16 = false); // Inherited methods overridden: void run() override; -- cgit v1.2.1