aboutsummaryrefslogtreecommitdiff
path: root/src/core/CL/CLKernelLibrary.cpp
diff options
context:
space:
mode:
authorManuel Bottini <manuel.bottini@arm.com>2018-11-21 11:53:04 +0000
committerGeorgios Pinitas <georgios.pinitas@arm.com>2019-01-07 10:54:47 +0000
commit8529bd68d8a979874b8c53c0e26af411aae058f5 (patch)
treeb20826ece1b05b13ccc8b9fd5ee2c7ced1e498f9 /src/core/CL/CLKernelLibrary.cpp
parent1bf5e289ec08c6eb507c079fd16c877559b45684 (diff)
downloadComputeLibrary-8529bd68d8a979874b8c53c0e26af411aae058f5.tar.gz
COMPMID-1727 - CL: Implement Gather
Change-Id: I3d859da09a4de1019bb8c2046725eab942247927 Reviewed-on: https://review.mlplatform.org/386 Tested-by: Arm Jenkins <bsgcomp@arm.com> Reviewed-by: Georgios Pinitas <georgios.pinitas@arm.com>
Diffstat (limited to 'src/core/CL/CLKernelLibrary.cpp')
-rw-r--r--src/core/CL/CLKernelLibrary.cpp7
1 files changed, 6 insertions, 1 deletions
diff --git a/src/core/CL/CLKernelLibrary.cpp b/src/core/CL/CLKernelLibrary.cpp
index 470a50f76b..2bc2d06827 100644
--- a/src/core/CL/CLKernelLibrary.cpp
+++ b/src/core/CL/CLKernelLibrary.cpp
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 2016-2018 ARM Limited.
+ * Copyright (c) 2016-2019 ARM Limited.
*
* SPDX-License-Identifier: MIT
*
@@ -262,6 +262,7 @@ const std::map<std::string, std::string> CLKernelLibrary::_kernel_program_map =
{ "finalize", "optical_flow_pyramid_lk.cl" },
{ "fuse_batchnormalization_layer", "batchnormalization_layer.cl" },
{ "floor_layer", "floor.cl" },
+ { "gather", "gather.cl" },
{ "gaussian1x5_sub_x", "gaussian_pyramid.cl" },
{ "gaussian5x1_sub_y", "gaussian_pyramid.cl" },
{ "gemm_accumulate_biases", "gemm.cl" },
@@ -684,6 +685,10 @@ const std::map<std::string, std::string> CLKernelLibrary::_program_source_map =
#include "./cl_kernels/floor.clembed"
},
{
+ "gather.cl",
+#include "./cl_kernels/gather.clembed"
+ },
+ {
"gaussian_pyramid.cl",
#include "./cl_kernels/gaussian_pyramid.clembed"
},