From c9938d26cc12896c4d37eabac185b4fbe3365f93 Mon Sep 17 00:00:00 2001 From: Sanghoon Lee Date: Mon, 16 Oct 2017 16:36:44 +0100 Subject: COMPMID-572: Porting dilate to the new framework. Change-Id: I85472973281d58aece89cbe0e08a9257d74fb3dc Reviewed-on: http://mpd-gerrit.cambridge.arm.com/92060 Tested-by: Kaizen Reviewed-by: Pablo Tello Reviewed-by: Anthony Barbier --- arm_compute/runtime/CL/functions/CLDilate.h | 2 +- arm_compute/runtime/NEON/functions/NEDilate.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) (limited to 'arm_compute') diff --git a/arm_compute/runtime/CL/functions/CLDilate.h b/arm_compute/runtime/CL/functions/CLDilate.h index 8534139c86..e4173ac515 100644 --- a/arm_compute/runtime/CL/functions/CLDilate.h +++ b/arm_compute/runtime/CL/functions/CLDilate.h @@ -49,7 +49,7 @@ public: * @param[in] border_mode Border mode to use for the convolution. * @param[in] constant_border_value (Optional) Constant value to use for borders if border_mode is set to CONSTANT. */ - void configure(ICLTensor *input, ICLTensor *output, BorderMode border_mode, uint8_t constant_border_value); + void configure(ICLTensor *input, ICLTensor *output, BorderMode border_mode, uint8_t constant_border_value = 0); }; } #endif /*__ARM_COMPUTE_CLDILATE_H__ */ diff --git a/arm_compute/runtime/NEON/functions/NEDilate.h b/arm_compute/runtime/NEON/functions/NEDilate.h index 17bdb3363e..3b795f57ee 100644 --- a/arm_compute/runtime/NEON/functions/NEDilate.h +++ b/arm_compute/runtime/NEON/functions/NEDilate.h @@ -49,7 +49,7 @@ public: * @param[in] border_mode Border mode to use for the convolution. * @param[in] constant_border_value (Optional) Constant value to use for borders if border_mode is set to CONSTANT. */ - void configure(ITensor *input, ITensor *output, BorderMode border_mode, uint8_t constant_border_value); + void configure(ITensor *input, ITensor *output, BorderMode border_mode, uint8_t constant_border_value = 0); }; } #endif /*__ARM_COMPUTE_NEDILATE_H__ */ -- cgit v1.2.1