From 58a0d6abbe6aa9ca3be5dd61eef97d27d79052b9 Mon Sep 17 00:00:00 2001 From: xiebaiyuan Date: Sat, 11 Apr 2020 17:40:59 +0800 Subject: [PATCH] [LITE][OPENCL][Image] fix opencl hang on mali , test=develop (#3385) fix opencl hang on mali --- lite/backends/opencl/cl_runtime.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lite/backends/opencl/cl_runtime.h b/lite/backends/opencl/cl_runtime.h index 2a8996b066..503b3a0116 100644 --- a/lite/backends/opencl/cl_runtime.h +++ b/lite/backends/opencl/cl_runtime.h @@ -55,7 +55,7 @@ class CLRuntime { std::map& GetDeviceInfo(); private: - CLRuntime() = default; + CLRuntime() { Init(); } ~CLRuntime(); -- GitLab