Windows使用TensorFlow-GPU导致IPython Notebook 崩溃问题 'CUBLAS_STATUS_ALLOC_FAILED'

在IPython Notebook中执行训练步骤的时候,可能没有任何提示的就突然崩溃了,这时候要注意看控制台的提示。
崩溃提示
会显示报错failed to create cublas handle: CUBLAS_STATUS_ALLOC_FAILED
原文解释在这里https://www.tensorflow.org/programmers_guide/using_gpu

The first is the allow_growth option, which attempts to allocate only as much GPU memory based on runtime allocations: it starts out allocating very little memory, and as Sessions get run and more GPU memory is needed, we extend the GPU memory region needed by the TensorFlow process. Note that we do not release memory, since that can lead to even worse memory fragmentation. To turn this option on, set the option in the ConfigProto by:
config = tf.ConfigProto()
config.gpu_options.allow_growth = True
session = tf.Session(config=config)

主要原因是我们需要手动设置内存的自动分配。解决方法就是将以上代码贴在训练代码前就可以了,当然原贴里面还提供了其他设置GPU资源分配的方法。

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值