Commit: c2a7317d1f4971bba0652bb56aadb01ff11702d9
Author: Thomas Dinges
Date:   Tue Aug 9 11:41:25 2016 +0200
Branches: master
https://developer.blender.org/rBc2a7317d1f4971bba0652bb56aadb01ff11702d9

CUDA: We don't support Toolkits < 7.5, update error message.

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

M       intern/cycles/device/device_cuda.cpp

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

diff --git a/intern/cycles/device/device_cuda.cpp 
b/intern/cycles/device/device_cuda.cpp
index 6a511ea..a85f340 100644
--- a/intern/cycles/device/device_cuda.cpp
+++ b/intern/cycles/device/device_cuda.cpp
@@ -297,7 +297,7 @@ public:
                        cuda_error_message("CUDA nvcc compiler version could 
not be parsed.");
                        return false;
                }
-               if(cuda_version < 60) {
+               if(cuda_version < 75) {
                        printf("Unsupported CUDA version %d.%d detected, "
                               "you need CUDA 7.5 or newer.\n",
                               major, minor);

_______________________________________________
Bf-blender-cvs mailing list
[email protected]
https://lists.blender.org/mailman/listinfo/bf-blender-cvs

Reply via email to