码迷,mamicode.com
首页 > 其他好文 > 详细

failed to create cublas handle: CUBLAS_STATUS_ALLOC_FAILED 错误解决方法

时间:2019-06-20 17:27:20      阅读:374      评论:0      收藏:0      [点我收藏+]

标签:and   img   status   session   option   igp   关闭   gpu   解决   

技术图片

解决:

 

config = tf.ConfigProto()
config.gpu_options.allow_growth = True
session = tf.Session(config=config, ...)

 

还有这样的(固定分配):

gpu_options = tf.GPUOptions(per_process_gpu_memory_fraction=0.333)
sess = tf.Session(config=tf.ConfigProto(gpu_options=gpu_options))

记得关闭其他用显存的程序哦!。。。

 

failed to create cublas handle: CUBLAS_STATUS_ALLOC_FAILED 错误解决方法

标签:and   img   status   session   option   igp   关闭   gpu   解决   

原文地址:https://www.cnblogs.com/gaofighting/p/11059752.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!