aboutsummaryrefslogtreecommitdiff
path: root/src/core/CL/kernels/CLDepthConcatenateLayerKernel.cpp
diff options
context:
space:
mode:
authorVidhya Sudhan Loganathan <vidhyasudhan.loganathan@arm.com>2019-06-28 14:09:53 +0100
committerVidhyaSudhan Loganathan <vidhyasudhan.loganathan@arm.com>2019-06-28 14:15:30 +0000
commit338595bca8ab60492f10626860acb1ab3722b1ce (patch)
tree03504ec3a2973e30c80f9bf56b77b4a4c7c9d83c /src/core/CL/kernels/CLDepthConcatenateLayerKernel.cpp
parent7026b303d636e7639f8877ae8d5eff54f39c1121 (diff)
downloadComputeLibrary-338595bca8ab60492f10626860acb1ab3722b1ce.tar.gz
COMPMID-2234 : Add support for axis 3 in NE/CLConcatenateLayer
Change-Id: Ic86f89ece3afe72809bc69c6de6fee7d21daa1d4 Signed-off-by: Vidhya Sudhan Loganathan <vidhyasudhan.loganathan@arm.com> Reviewed-on: https://review.mlplatform.org/c/1440 Comments-Addressed: Arm Jenkins <bsgcomp@arm.com> Reviewed-by: Gian Marco Iodice <gianmarco.iodice@arm.com> Tested-by: Arm Jenkins <bsgcomp@arm.com>
Diffstat (limited to 'src/core/CL/kernels/CLDepthConcatenateLayerKernel.cpp')
-rw-r--r--src/core/CL/kernels/CLDepthConcatenateLayerKernel.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/CL/kernels/CLDepthConcatenateLayerKernel.cpp b/src/core/CL/kernels/CLDepthConcatenateLayerKernel.cpp
index 5e1bbe944f..40b633b273 100644
--- a/src/core/CL/kernels/CLDepthConcatenateLayerKernel.cpp
+++ b/src/core/CL/kernels/CLDepthConcatenateLayerKernel.cpp
@@ -109,7 +109,7 @@ void CLDepthConcatenateLayerKernel::configure(const ICLTensor *input, unsigned i
}
// Create kernel
- _kernel = static_cast<cl::Kernel>(CLKernelLibrary::get().create_kernel("concatenate_depth", build_opts.options()));
+ _kernel = static_cast<cl::Kernel>(CLKernelLibrary::get().create_kernel("concatenate", build_opts.options()));
// Configure kernel window
auto win_config = validate_and_configure_window(input->info(), depth_offset, output->info());