From 960b0849e037641b74e57105a55d107da7dbe9b0 Mon Sep 17 00:00:00 2001 From: steniu01 Date: Fri, 23 Jun 2017 11:44:34 +0100 Subject: COMPMID-250 make BorderSize explicit and fix float value validation bug Change-Id: I747fdef3b5ad83a9c00dc42796debe86b6cd972e Reviewed-on: http://mpd-gerrit.cambridge.arm.com/78686 Tested-by: Kaizen Reviewed-by: Moritz Pflanzer --- src/runtime/CL/functions/CLFillBorder.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/runtime/CL/functions/CLFillBorder.cpp') diff --git a/src/runtime/CL/functions/CLFillBorder.cpp b/src/runtime/CL/functions/CLFillBorder.cpp index 9e59b771d8..172f09da1a 100644 --- a/src/runtime/CL/functions/CLFillBorder.cpp +++ b/src/runtime/CL/functions/CLFillBorder.cpp @@ -33,6 +33,6 @@ using namespace arm_compute; void CLFillBorder::configure(ICLTensor *tensor, unsigned int border_width, BorderMode border_mode, const PixelValue &constant_border_value) { auto k = arm_compute::cpp14::make_unique(); - k->configure(tensor, border_width, border_mode, constant_border_value); + k->configure(tensor, BorderSize(border_width), border_mode, constant_border_value); _kernel = std::move(k); } -- cgit v1.2.1