P4 to Git Change 1319372 by gandryey@gera-w8 on 2016/09/27 12:16:18

SWDEV-102288 - [CQE OCL][OpenCL on PAL] 32bit "ExtractPrimes" OpenCL SDK Sample is causing TDR followed by crash
	- Disable OCL2.0 with 32 bit binaries for VI+

Affected files ...

... //depot/stg/opencl/drivers/opencl/runtime/device/pal/palsettings.cpp#7 edit
This commit is contained in:
foreman
2016-09-27 12:22:54 -04:00
parent 692f05e628
commit 9aa76246e5
+1 -1
View File
@@ -206,7 +206,7 @@ Settings::create(
cacheSize_ = 16 * Ki;
libSelector_ = amd::GPU_Library_CI;
if (LP64_SWITCH(WINDOWS_SWITCH(viPlus_, false), true)) {
if (LP64_SWITCH(false, true)) {
oclVersion_ = !reportAsOCL12Device /*&& calAttr.isOpenCL200Device*/ ?
XCONCAT(OpenCL, XCONCAT(OPENCL_MAJOR, OPENCL_MINOR)) : OpenCL12;
}