From 7457a8d2a8451dc8957e65c88d046cfff12b06e9 Mon Sep 17 00:00:00 2001 From: Abe Mbise Date: Mon, 9 Oct 2017 17:44:54 +0100 Subject: COMPMID-571: Implement reference and CL/NEON validation for Erode Change-Id: I7cc6acc4947f77412230e286ab9b14304f35b025 Reviewed-on: http://mpd-gerrit.cambridge.arm.com/90869 Tested-by: Kaizen Reviewed-by: Georgios Pinitas Reviewed-by: Pablo Tello --- arm_compute/runtime/CL/functions/CLErode.h | 2 +- arm_compute/runtime/NEON/functions/NEErode.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) (limited to 'arm_compute/runtime') diff --git a/arm_compute/runtime/CL/functions/CLErode.h b/arm_compute/runtime/CL/functions/CLErode.h index cd2f5516e2..a929cc9ba0 100644 --- a/arm_compute/runtime/CL/functions/CLErode.h +++ b/arm_compute/runtime/CL/functions/CLErode.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_CLERODE_H__ */ diff --git a/arm_compute/runtime/NEON/functions/NEErode.h b/arm_compute/runtime/NEON/functions/NEErode.h index 940ae18471..739e981a9e 100644 --- a/arm_compute/runtime/NEON/functions/NEErode.h +++ b/arm_compute/runtime/NEON/functions/NEErode.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_NEERODE_H__ */ -- cgit v1.2.1