aboutsummaryrefslogtreecommitdiff
path: root/src/core/CL/CLKernelLibrary.cpp
diff options
context:
space:
mode:
authorMichele Di Giorgio <michele.digiorgio@arm.com>2018-08-31 16:26:25 +0100
committerAnthony Barbier <anthony.barbier@arm.com>2018-11-02 16:54:54 +0000
commitb57be0da77370e5e71fe82dfa281f528279e8127 (patch)
tree2e08acec6363b74f840bad04c3b7195a0bd1b300 /src/core/CL/CLKernelLibrary.cpp
parenta34286ecabf4fc9e66e423332063a3d5fb17b8f8 (diff)
downloadComputeLibrary-b57be0da77370e5e71fe82dfa281f528279e8127.tar.gz
COMPMID-1330: Add support for NormalizePlanarYUV operator in CL
Change-Id: Id0754b9e2bc3ef7ff2c4c21c3b89709588c41bd3 Reviewed-on: https://eu-gerrit-1.euhpc.arm.com/146637 Tested-by: Jenkins <bsgcomp@arm.com> Reviewed-by: Georgios Pinitas <georgios.pinitas@arm.com> Reviewed-by: Giorgio Arena <giorgio.arena@arm.com>
Diffstat (limited to 'src/core/CL/CLKernelLibrary.cpp')
-rw-r--r--src/core/CL/CLKernelLibrary.cpp6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/core/CL/CLKernelLibrary.cpp b/src/core/CL/CLKernelLibrary.cpp
index 0cc6e320bf..4af2b09530 100644
--- a/src/core/CL/CLKernelLibrary.cpp
+++ b/src/core/CL/CLKernelLibrary.cpp
@@ -308,6 +308,8 @@ const std::map<std::string, std::string> CLKernelLibrary::_kernel_program_map =
{ "non_max_suppression", "nonmax.cl" },
{ "normalization_layer_cross_map", "normalization_layer.cl" },
{ "normalization_layer_in_map", "normalization_layer.cl" },
+ { "normalize_planar_yuv_layer_nchw", "normalize_planar_yuv_layer.cl" },
+ { "normalize_planar_yuv_layer_nhwc", "normalize_planar_yuv_layer.cl" },
{ "NV12_to_IYUV_bt709", "color_convert.cl" },
{ "NV12_to_RGB888_bt709", "color_convert.cl" },
{ "NV12_to_RGBA8888_bt709", "color_convert.cl" },
@@ -674,6 +676,10 @@ const std::map<std::string, std::string> CLKernelLibrary::_program_source_map =
#include "./cl_kernels/normalization_layer.clembed"
},
{
+ "normalize_planar_yuv_layer.cl",
+#include "./cl_kernels/normalize_planar_yuv_layer.clembed"
+ },
+ {
"batchnormalization_layer.cl",
#include "./cl_kernels/batchnormalization_layer.clembed"
},