From 1f4d99c5e626f08a22f6307e45fe1317d98a3ab1 Mon Sep 17 00:00:00 2001 From: liuqi Date: Tue, 14 Nov 2017 10:29:56 +0800 Subject: [PATCH] Change the order of member variables of opencl_runtime --- mace/core/runtime/opencl/opencl_runtime.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mace/core/runtime/opencl/opencl_runtime.h b/mace/core/runtime/opencl/opencl_runtime.h index f21ade57..ed7d0c68 100644 --- a/mace/core/runtime/opencl/opencl_runtime.h +++ b/mace/core/runtime/opencl/opencl_runtime.h @@ -33,8 +33,8 @@ class OpenCLRuntime { private: cl::Context context_; - cl::CommandQueue command_queue_; cl::Device device_; + cl::CommandQueue command_queue_; cl::Program program_; std::once_flag build_flag_; }; -- GitLab