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:
authorBrecht Van Lommel <brechtvanlommel@gmail.com>2018-02-06 17:19:25 +0300
committerBrecht Van Lommel <brechtvanlommel@gmail.com>2018-02-18 02:53:25 +0300
commitfee4b646c451303a78baef3cbf031e9e0f771373 (patch)
treed94da05b3b54af47cbcba5d02af77b52e6ac2fc9 /intern/cycles/device/device_cuda.cpp
parent1dcd7db73d13443c59dd824abd9cacbf6bc88997 (diff)
Cycles: tweak CUDA messages and avoid build errors with existing sm_2x configs.
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 d28080c667a..5703aa7144e 100644
--- a/intern/cycles/device/device_cuda.cpp
+++ b/intern/cycles/device/device_cuda.cpp
@@ -2479,7 +2479,7 @@ void device_cuda_info(vector<DeviceInfo>& devices)
cuDeviceGetAttribute(&major, CU_DEVICE_ATTRIBUTE_COMPUTE_CAPABILITY_MAJOR, num);
if(major < 3) {
VLOG(1) << "Ignoring device \"" << name
- << "\", compute capability is too low.";
+ << "\", this graphics card is no longer supported.";
continue;
}