aboutsummaryrefslogtreecommitdiff
path: root/src/core/CL/CLKernelLibrary.cpp
diff options
context:
space:
mode:
authorgiuros01 <giuseppe.rossini@arm.com>2018-11-21 09:59:17 +0000
committerGiuseppe Rossini <giuseppe.rossini@arm.com>2018-11-27 20:22:05 +0000
commit3175fcf63249673f33fd1638879adad4baab545b (patch)
tree5b870cd5180c122eaa475bf6a08bb3cb8228e09e /src/core/CL/CLKernelLibrary.cpp
parent0a80d92bcdbdc4f3974d0fbcaa529a71ed539559 (diff)
downloadComputeLibrary-3175fcf63249673f33fd1638879adad4baab545b.tar.gz
COMPMID-1720: CL: Implement Tile
Change-Id: I2a18f0acea382960a8bc71a8f56928a5998f0dd6
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 12944061a9..6e5e97e3e1 100644
--- a/src/core/CL/CLKernelLibrary.cpp
+++ b/src/core/CL/CLKernelLibrary.cpp
@@ -410,6 +410,7 @@ const std::map<std::string, std::string> CLKernelLibrary::_kernel_program_map =
{ "tablelookup_S16", "tablelookup.cl" },
{ "threshold_binary", "threshold.cl" },
{ "threshold_range", "threshold.cl" },
+ { "tile", "tile.cl" },
{ "transpose", "transpose.cl" },
{ "UYVY422_to_IYUV_bt709", "color_convert.cl" },
{ "UYVY422_to_NV12_bt709", "color_convert.cl" },
@@ -849,6 +850,10 @@ const std::map<std::string, std::string> CLKernelLibrary::_program_source_map =
#include "./cl_kernels/threshold.clembed"
},
{
+ "tile.cl",
+#include "./cl_kernels/tile.clembed"
+ },
+ {
"transpose.cl",
#include "./cl_kernels/transpose.clembed"
},