aboutsummaryrefslogtreecommitdiff
path: root/arm_compute/core/CL/OpenCL.h
diff options
context:
space:
mode:
authorGian Marco Iodice <gianmarco.iodice@arm.com>2017-08-11 11:56:52 +0100
committerAnthony Barbier <anthony.barbier@arm.com>2018-11-02 16:35:24 +0000
commit63d76a77c20742a47629d94857fb888805bffad5 (patch)
treef85b6d0745dc36fb15cc908dedd6b91ef5e31581 /arm_compute/core/CL/OpenCL.h
parent9331aebb5b75a79a68d0d3d541aa70032d255294 (diff)
downloadComputeLibrary-63d76a77c20742a47629d94857fb888805bffad5.tar.gz
COMPMID-417 - Added clFinish to CLSymbols
Change-Id: If3ee89d91f105489c766b9e714fdf72da8fbfe78 Reviewed-on: http://mpd-gerrit.cambridge.arm.com/83664 Reviewed-by: Moritz Pflanzer <moritz.pflanzer@arm.com> Tested-by: Kaizen <jeremy.johnson+kaizengerrit@arm.com>
Diffstat (limited to 'arm_compute/core/CL/OpenCL.h')
-rw-r--r--arm_compute/core/CL/OpenCL.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/arm_compute/core/CL/OpenCL.h b/arm_compute/core/CL/OpenCL.h
index 644608ff3d..bea9743f48 100644
--- a/arm_compute/core/CL/OpenCL.h
+++ b/arm_compute/core/CL/OpenCL.h
@@ -72,6 +72,7 @@ public:
using clRetainContext_func = cl_int (*)(cl_context context);
using clReleaseProgram_func = cl_int (*)(cl_program program);
using clFlush_func = cl_int (*)(cl_command_queue command_queue);
+ using clFinish_func = cl_int (*)(cl_command_queue command_queue);
using clGetProgramInfo_func = cl_int (*)(cl_program, cl_program_info, size_t, void *, size_t *);
using clCreateKernel_func = cl_kernel (*)(cl_program, const char *, cl_int *);
using clRetainKernel_func = cl_int (*)(cl_kernel kernel);
@@ -91,6 +92,7 @@ public:
clCreateKernel_func clCreateKernel = nullptr;
clGetProgramInfo_func clGetProgramInfo = nullptr;
clFlush_func clFlush = nullptr;
+ clFinish_func clFinish = nullptr;
clReleaseProgram_func clReleaseProgram = nullptr;
clRetainContext_func clRetainContext = nullptr;
clCreateProgramWithBinary_func clCreateProgramWithBinary = nullptr;