aboutsummaryrefslogtreecommitdiff
path: root/src/core/CL/OpenCL.cpp
diff options
context:
space:
mode:
authorMoritz Pflanzer <moritz.pflanzer@arm.com>2017-09-20 16:03:35 +0100
committerAnthony Barbier <anthony.barbier@arm.com>2018-11-02 16:35:24 +0000
commit159b6da5b7c155cf17c227d3a2372f9d2cc46dff (patch)
tree7e1b09c250a07636ee1a05b29eb58187d5f2c2b5 /src/core/CL/OpenCL.cpp
parentdc836b6f739e9e05fe3de51fe9ea65833aaa8c75 (diff)
downloadComputeLibrary-159b6da5b7c155cf17c227d3a2372f9d2cc46dff.tar.gz
COMPMID-417: Fix clRetainEvent
Change-Id: I0a52b2d4f177f0b0ae67e9674ff39a9ae30452b9 Reviewed-on: http://mpd-gerrit.cambridge.arm.com/88457 Reviewed-by: Georgios Pinitas <georgios.pinitas@arm.com> Tested-by: Kaizen <jeremy.johnson+kaizengerrit@arm.com>
Diffstat (limited to 'src/core/CL/OpenCL.cpp')
-rw-r--r--src/core/CL/OpenCL.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/core/CL/OpenCL.cpp b/src/core/CL/OpenCL.cpp
index c997116df5..1d04f397fd 100644
--- a/src/core/CL/OpenCL.cpp
+++ b/src/core/CL/OpenCL.cpp
@@ -621,6 +621,7 @@ cl_int clGetDeviceInfo(cl_device_id device,
cl_int clRetainEvent(cl_event event)
{
+ arm_compute::CLSymbols::get().load_default();
auto func = arm_compute::CLSymbols::get().clRetainEvent;
if(func != nullptr)
{