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

解决报错Could not satisfy explicit device specification '' because the node was colocated with a group of nodes that required incompatible device '/device:GPU:0'

时间:2018-10-26 22:23:02      阅读:1033      评论:0      收藏:0      [点我收藏+]

标签:ice   oca   ESS   code   表示   使用   16px   ble   config   


sess = tf.Session(config=tf.ConfigProto(log_device_placement=True))

改为如下:
sess = tf.Session(config=tf.ConfigProto(allow_soft_placement=True, log_device_placement=True))

备注:allow_soft_placement=True表示当没有GPU实现可用时,使用将允许TensorFlow回退到CPU。

解决报错Could not satisfy explicit device specification '' because the node was colocated with a group of nodes that required incompatible device '/device:GPU:0'

标签:ice   oca   ESS   code   表示   使用   16px   ble   config   

原文地址:https://www.cnblogs.com/wangliman/p/9858402.html

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