Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThomas Dinges <blender@dingto.org>2016-08-09 12:41:25 +0300
committerThomas Dinges <blender@dingto.org>2016-08-09 12:41:25 +0300
commitc2a7317d1f4971bba0652bb56aadb01ff11702d9 (patch)
tree1131ab2f340b65fab3ac16822f2dae77c0fe6757 /intern/cycles/device/device_cuda.cpp
parent151390069a5bbddb15d1362ec1ac5722090e9231 (diff)
CUDA: We don't support Toolkits < 7.5, update error message.
Diffstat (limited to 'intern/cycles/device/device_cuda.cpp')
-rw-r--r--intern/cycles/device/device_cuda.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/intern/cycles/device/device_cuda.cpp b/intern/cycles/device/device_cuda.cpp
index 6a511ea7316..a85f34082db 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);