aboutsummaryrefslogtreecommitdiff
path: root/src/core/CL/CLKernelLibrary.cpp
diff options
context:
space:
mode:
authorManuel Bottini <manuel.bottini@arm.com>2021-04-08 12:50:12 +0100
committerManuel Bottini <manuel.bottini@arm.com>2021-04-14 10:37:16 +0000
commit21c28957f9c6fe1a28ef934e711bb7474b8d65ee (patch)
tree220293c48b9705ed8a9a828825503442f414672d /src/core/CL/CLKernelLibrary.cpp
parent91b7f7423a97f0ae713a13182f289621dad17c43 (diff)
downloadComputeLibrary-21c28957f9c6fe1a28ef934e711bb7474b8d65ee.tar.gz
Remove OpenCL padding: CLNormalizationLayerKernel
Only for NHWC data layout Resolves: COMPMID-3910 Change-Id: Ie2d71482b3e3b55ac155e9af152032a5de8bbd50 Signed-off-by: Manuel Bottini <manuel.bottini@arm.com> Reviewed-on: https://review.mlplatform.org/c/ml/ComputeLibrary/+/5388 Reviewed-by: Giorgio Arena <giorgio.arena@arm.com> Comments-Addressed: Arm Jenkins <bsgcomp@arm.com> Tested-by: Arm Jenkins <bsgcomp@arm.com>
Diffstat (limited to 'src/core/CL/CLKernelLibrary.cpp')
-rw-r--r--src/core/CL/CLKernelLibrary.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/core/CL/CLKernelLibrary.cpp b/src/core/CL/CLKernelLibrary.cpp
index 2652884912..eef204fde9 100644
--- a/src/core/CL/CLKernelLibrary.cpp
+++ b/src/core/CL/CLKernelLibrary.cpp
@@ -364,7 +364,8 @@ const std::map<std::string, std::string> CLKernelLibrary::_kernel_program_map =
{ "memset", "memset.cl" },
{ "minmax_layer", "minmax_layer.cl" },
{ "non_max_suppression", "nonmax.cl" },
- { "normalization_layer_cross_map", "normalization_layer.cl" },
+ { "normalization_layer_cross_map_nchw", "normalization_layer.cl" },
+ { "normalization_layer_cross_map_nhwc", "normalization_layer.cl" },
{ "normalization_layer_in_map_nchw", "normalization_layer.cl" },
{ "normalization_layer_in_map_nhwc", "normalization_layer.cl" },
{ "normalize_planar_yuv_layer_nchw", "normalize_planar_yuv_layer.cl" },