Blender渲染问题?
Tofloor
poster avatar
gotianyahaijiao
deepin
2018-12-31 20:58
Author
Deepin Blender用Cycles渲染图形[GPU计算]都会直接关闭Blender软件,但是Windows就没有这个问题?
在Deepin里面已经安装了cuda了,这是如何解决呀?


Reply Favorite View the author
All Replies
avatar
gotianyahaijiao
deepin
2019-01-01 18:53
#1
Reply View the author
avatar
gotianyahaijiao
deepin
2019-01-15 01:20
#2
Reply View the author
avatar
158******91
deepin
2019-01-15 03:16
#3
Blender运行GPU出错后程序崩溃?终端里运行Blender,然后看开GPU退出时的报错~~
Reply View the author
avatar
gotianyahaijiao
deepin
2019-01-15 15:28
#4
https://bbs.deepin.org/post/173122
Blender运行GPU出错后程序崩溃?终端里运行Blender,然后看开GPU退出时的报错~~

你好!发现问题了?
CUDA version 9.10 detected, build may succeed but only CUDA 8.0 is officially supported.
之前用的是源里面的CUDA,版本号是9.10。
CUDA Toolkit 8.0 GA1和CUDA Toolkit 8.0 GA2有什么区别是呀?直接安装deb包可以吗?
Reply View the author
avatar
158******91
deepin
2019-01-15 17:33
#5
https://bbs.deepin.org/post/173122
你好!发现问题了?
CUDA version 9.10 detected, build may succeed but only CUDA 8.0 is officially s ...

CUDA不同版本之间不能混用;特定版本的CUDA只能使用特定版本的GCC编译器;
你先在终端里
  1. g++ -v
Copy the Code
看下你编译器的已安装版本,是不是你的两个GA版本的规定版本,然后随便装一个就可以了
如果安装失败,就把9.0版的删掉后再试试
Reply View the author
avatar
gotianyahaijiao
deepin
2019-01-15 20:54
#6
https://bbs.deepin.org/post/173122
CUDA不同版本之间不能混用;特定版本的CUDA只能使用特定版本的GCC编译器;
你先在终端里看下你编译器的已 ...

你好!这是 GCC版本 gcc version 7.3.0 (Debian 7.3.0-19),好像不兼容。
Reply View the author
avatar
158******91
deepin
2019-01-16 03:24
#7
https://bbs.deepin.org/post/173122
你好!这是 GCC版本 gcc version 7.3.0 (Debian 7.3.0-19),好像不兼容。

装8.0版之前,你先安装gcc-4.8
  1. apt install gcc-4.8 g++-4.8
Copy the Code
然后用update-alternatives工具来选择使用的gcc版本
  1. update-alternatives --install /usr/bin/g++ g++ /usr/bin/g++-4.8 50
Copy the Code
选择命令
  1. update-alternatives --config g++
Copy the Code
然后再安装CUDA8就可以了
Reply View the author
avatar
gotianyahaijiao
deepin
2019-01-16 04:20
#8
https://bbs.deepin.org/post/173122
装8.0版之前,你先安装gcc-4.8然后用update-alternatives工具来选择使用的gcc版本选择命令然后再安装CUDA8 ...

好的,谢谢
Reply View the author