[Bf-blender-cvs] [04530c93837] master: Cycles: adjust supported driver version for AMD GPUs

Hristo Gueorguiev noreply at git.blender.org
Sun Jun 11 23:17:55 CEST 2017


Commit: 04530c93837368311b47c53ee6d4cee039ae1836
Author: Hristo Gueorguiev
Date:   Sun Jun 11 23:04:27 2017 +0200
Branches: master
https://developer.blender.org/rB04530c93837368311b47c53ee6d4cee039ae1836

Cycles: adjust supported driver version for AMD GPUs

On Windows 17.Q1 and 17.Q2 return driver version 2236.10.

===================================================================

M	intern/cycles/device/opencl/opencl_util.cpp

===================================================================

diff --git a/intern/cycles/device/opencl/opencl_util.cpp b/intern/cycles/device/opencl/opencl_util.cpp
index 4c6de60e8aa..8ba2a8e26da 100644
--- a/intern/cycles/device/opencl/opencl_util.cpp
+++ b/intern/cycles/device/opencl/opencl_util.cpp
@@ -626,8 +626,8 @@ bool OpenCLInfo::device_supported(const string& platform_name,
 	if(platform_name == "AMD Accelerated Parallel Processing" &&
 	   device_type == CL_DEVICE_TYPE_GPU)
 	{
-		if(driver_major < 2348) {
-			VLOG(1) << "AMD driver version " << driver_major << "." << driver_minor << " not supported";
+		if(driver_major < 2236) {
+			VLOG(1) << "AMD driver version " << driver_major << "." << driver_minor << " not supported.";
 			return false;
 		}
 		const char *blacklist[] = {




More information about the Bf-blender-cvs mailing list