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-12-04 14:34:59 +0300
committerBrecht Van Lommel <brechtvanlommel@gmail.com>2018-12-04 18:03:18 +0300
commitb14ec1860127eddf9a46132c4877bd4a7ee385a2 (patch)
tree72db903da88d3589c639984c86159ed5e19c1dd2 /extern/cuew
parent3f31ec83984b19efe174319ae1d86995a4c26ecc (diff)
Cycles: add initial CUDA 10.0 support, but only recommend use for Turing cards.
There may still be rendering errors when used for older graphics cards.
Diffstat (limited to 'extern/cuew')
-rw-r--r--extern/cuew/src/cuew.c6
1 files changed, 5 insertions, 1 deletions
diff --git a/extern/cuew/src/cuew.c b/extern/cuew/src/cuew.c
index ad216e66452..a22f6fda570 100644
--- a/extern/cuew/src/cuew.c
+++ b/extern/cuew/src/cuew.c
@@ -619,7 +619,11 @@ static int cuewNvrtcInit(void) {
/* Library paths. */
#ifdef _WIN32
/* Expected in c:/windows/system or similar, no path needed. */
- const char *nvrtc_paths[] = {"nvrtc64_80.dll", "nvrtc64_90.dll", "nvrtc64_91.dll", NULL};
+ const char *nvrtc_paths[] = {"nvrtc64_80.dll",
+ "nvrtc64_90.dll",
+ "nvrtc64_91.dll",
+ "nvrtc64_10_0.dll",
+ NULL};
#elif defined(__APPLE__)
/* Default installation path. */
const char *nvrtc_paths[] = {"/usr/local/cuda/lib/libnvrtc.dylib", NULL};