aboutsummaryrefslogtreecommitdiff
path: root/src/core/CL/kernels/CLBox3x3Kernel.cpp
diff options
context:
space:
mode:
authorsteniu01 <steven.niu@arm.com>2017-06-23 11:44:34 +0100
committerAnthony Barbier <anthony.barbier@arm.com>2018-09-17 14:14:20 +0100
commit960b0849e037641b74e57105a55d107da7dbe9b0 (patch)
tree0a424c4e2c62e06d61f6bd8e62313344bd908989 /src/core/CL/kernels/CLBox3x3Kernel.cpp
parent79c6178985084cc1d48502a7a8bb298faae5f586 (diff)
downloadComputeLibrary-960b0849e037641b74e57105a55d107da7dbe9b0.tar.gz
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 <jeremy.johnson+kaizengerrit@arm.com> Reviewed-by: Moritz Pflanzer <moritz.pflanzer@arm.com>
Diffstat (limited to 'src/core/CL/kernels/CLBox3x3Kernel.cpp')
-rw-r--r--src/core/CL/kernels/CLBox3x3Kernel.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/CL/kernels/CLBox3x3Kernel.cpp b/src/core/CL/kernels/CLBox3x3Kernel.cpp
index e113d30210..0299f6233c 100644
--- a/src/core/CL/kernels/CLBox3x3Kernel.cpp
+++ b/src/core/CL/kernels/CLBox3x3Kernel.cpp
@@ -37,7 +37,7 @@ using namespace arm_compute;
BorderSize CLBox3x3Kernel::border_size() const
{
- return 1;
+ return BorderSize(1);
}
void CLBox3x3Kernel::configure(const ICLTensor *input, ICLTensor *output, bool border_undefined)