[BugFix] Fix compilation error caused by typo in #3109 (#3135)
authorRafik Saliev <rafik.f.saliev@intel.com>
Mon, 16 Nov 2020 08:25:57 +0000 (09:25 +0100)
committerGitHub <noreply@github.com>
Mon, 16 Nov 2020 08:25:57 +0000 (11:25 +0300)
inference-engine/include/gpu/gpu_ocl_wrapper.hpp

index f51076e..68ccf32 100644 (file)
@@ -19,7 +19,7 @@
 #endif
 
 #ifdef CL_HPP_MINIMUM_OPENCL_VERSION
-# if CL_HPP_MINIMUM_OPENCL_VERSION <= 120
+# if CL_HPP_MINIMUM_OPENCL_VERSION < 120
 #  error "CL_HPP_MINIMUM_OPENCL_VERSION must be >= 120"
 # endif
 #else
@@ -27,7 +27,7 @@
 #endif
 
 #ifdef CL_HPP_TARGET_OPENCL_VERSION
-# if CL_HPP_TARGET_OPENCL_VERSION <= 120
+# if CL_HPP_TARGET_OPENCL_VERSION < 120
 #  error "CL_HPP_TARGET_OPENCL_VERSION must be >= 120"
 # endif
 #else