aboutsummaryrefslogtreecommitdiff
path: root/src/core/CL/CLKernelLibrary.cpp
diff options
context:
space:
mode:
authorsteniu01 <steven.niu@arm.com>2017-08-09 16:26:22 +0100
committerAnthony Barbier <anthony.barbier@arm.com>2018-11-02 16:35:24 +0000
commitdb00668890e1aba956e02fa02e1383b54dfd1435 (patch)
treee20cc07d9bc9eb4bf613213007a2351f5d4eec60 /src/core/CL/CLKernelLibrary.cpp
parentff6ab352f4f6715b7028a39d8722759d19d2524b (diff)
downloadComputeLibrary-db00668890e1aba956e02fa02e1383b54dfd1435.tar.gz
COMPMID-478 Implemnt CL direct convolution 5x5
Change-Id: I4b975aff310cda9964d8c5dcee182d5d5c82741b Reviewed-on: http://mpd-gerrit.cambridge.arm.com/83474 Tested-by: Kaizen <jeremy.johnson+kaizengerrit@arm.com> Reviewed-by: Gian Marco Iodice <gianmarco.iodice@arm.com>
Diffstat (limited to 'src/core/CL/CLKernelLibrary.cpp')
-rw-r--r--src/core/CL/CLKernelLibrary.cpp5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/core/CL/CLKernelLibrary.cpp b/src/core/CL/CLKernelLibrary.cpp
index 435e19a22b..1647a37ce0 100644
--- a/src/core/CL/CLKernelLibrary.cpp
+++ b/src/core/CL/CLKernelLibrary.cpp
@@ -147,6 +147,7 @@ const std::map<std::string, std::string> CLKernelLibrary::_kernel_program_map =
{ "dilate", "dilate.cl" },
{ "direct_convolution1x1", "direct_convolution1x1.cl" },
{ "direct_convolution3x3", "direct_convolution3x3.cl" },
+ { "direct_convolution5x5", "direct_convolution5x5.cl" },
{ "erode", "erode.cl" },
{ "fast_corners", "fast_corners.cl" },
{ "fill_image_borders_constant", "fill_border.cl" },
@@ -360,6 +361,10 @@ const std::map<std::string, std::string> CLKernelLibrary::_program_source_map =
#include "./cl_kernels/direct_convolution3x3.clembed"
},
{
+ "direct_convolution5x5.cl",
+#include "./cl_kernels/direct_convolution5x5.clembed"
+ },
+ {
"erode.cl",
#include "./cl_kernels/erode.clembed"
},