Theano 导入失败,theano 配置cnmem = 1
知道如何确保将 GPU 完全分配给 theano python 脚本吗?
注意:不使用显示以避免其 GPU 使用
文件:.theanorc
cnmem = 1
文件:test.py
print 'Importing Theano Library ...'
import theano
print 'Imported'
输出:
$ python test.py
Importing Theano Library ...
Killed
$
它仅适用于 cnmem = 0.75
文件:.theanorc
cnmem = 0.75
输出:
$ python test.py
Importing Theano Library ...
Imported
$