Commit 327d9f27 authored by Konstantin Matskevich's avatar Konstantin Matskevich

fixed Split for device version equals 78712

parent 0e1717c1
...@@ -250,7 +250,8 @@ namespace cv ...@@ -250,7 +250,8 @@ namespace cv
&& devInfo.deviceType == CVCL_DEVICE_TYPE_CPU && devInfo.deviceType == CVCL_DEVICE_TYPE_CPU
&& devInfo.platform->platformVendor.find("Intel") != std::string::npos && devInfo.platform->platformVendor.find("Intel") != std::string::npos
&& (devInfo.deviceVersion.find("Build 56860") != std::string::npos && (devInfo.deviceVersion.find("Build 56860") != std::string::npos
|| devInfo.deviceVersion.find("Build 76921") != std::string::npos)) || devInfo.deviceVersion.find("Build 76921") != std::string::npos
|| devInfo.deviceVersion.find("Build 78712") != std::string::npos))
build_options += " -D BYPASS_VSTORE=true"; build_options += " -D BYPASS_VSTORE=true";
size_t globalThreads[3] = { divUp(src.cols, VEC_SIZE), src.rows, 1 }; size_t globalThreads[3] = { divUp(src.cols, VEC_SIZE), src.rows, 1 };
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment