From bef7fa27b0d231a8649952f60808132d109b6345 Mon Sep 17 00:00:00 2001 From: Sang-Hoon Park Date: Wed, 21 Oct 2020 15:58:54 +0100 Subject: COMPMID-3639: (3RDPARTY_UPDATE) Move CL kernels to src Change-Id: I10d27db788e5086adae1841e3e2441cd9b76ef84 Signed-off-by: Sang-Hoon Park Reviewed-on: https://review.mlplatform.org/c/ml/ComputeLibrary/+/4310 Reviewed-by: Georgios Pinitas Comments-Addressed: Arm Jenkins Tested-by: Arm Jenkins --- docs/04_adding_operator.dox | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'docs/04_adding_operator.dox') diff --git a/docs/04_adding_operator.dox b/docs/04_adding_operator.dox index cf2e78368d..13be712549 100644 --- a/docs/04_adding_operator.dox +++ b/docs/04_adding_operator.dox @@ -80,7 +80,7 @@ There are specific interfaces for OpenCL and Neon: @ref ICLKernel, INEKernel (us There are two others implementation of @ref IKernel called @ref ICLSimpleKernel and INESimpleKernel, they are the interface for simple kernels that have just one input tensor and one output tensor. Creating a new kernel implies adding new files: -- arm_compute/core/CL/kernels/CLReshapeLayerKernel.h +- src/core/CL/kernels/CLReshapeLayerKernel.h - src/core/CL/cl_kernels/reshape_layer.cl - src/core/CL/kernels/CLReshapeLayerKernel.cpp - src/core/CL/CLKernelLibrary.cpp @@ -90,16 +90,16 @@ Neon kernel - src/core/NEON/kernels/NEReshapeLayerKernel.cpp We must register the new layer in the respective libraries: -- arm_compute/core/CL/CLKernels.h +- src/core/CL/CLKernels.h - arm_compute/core/NEON/NEKernels.h These files contain the list of all kernels available in the corresponding Compute Library's backend, for example CLKernels: @code{.cpp} ... -#include "arm_compute/core/CL/kernels/CLMinMaxLayerKernel.h" -#include "arm_compute/core/CL/kernels/CLMinMaxLocationKernel.h" +#include "src/core/CL/kernels/CLMinMaxLayerKernel.h" +#include "src/core/CL/kernels/CLMinMaxLocationKernel.h" ... -#include "arm_compute/core/CL/kernels/CLReshapeLayerKernel.h" +#include "src/core/CL/kernels/CLReshapeLayerKernel.h" ... @endcode -- cgit v1.2.1