2016-06-16 33 views
1

我试图执行TensorFlow给出的示例。更具体地说,最小例子。当我执行 tensorflow/examples/tutorials/mnist/mnist_with_summaries.py,线163,它是:执行张量流程示例代码`mnist_with_summaries.py`时出现警告

summary, _ = sess.run([merged, train_step], 
             feed_dict=feed_dict(True), 
             options=run_options, 
             run_metadata=run_metadata) 

下面的警告出来:

W tensorflow/core/common_runtime/gpu/gpu_tracer.cc:513] Unhandled API Callback for 2 41 
W tensorflow/core/common_runtime/gpu/gpu_tracer.cc:513] Unhandled API Callback for 2 41 
W tensorflow/core/common_runtime/gpu/gpu_tracer.cc:513] Unhandled API Callback for 2 41 
W tensorflow/core/common_runtime/gpu/gpu_tracer.cc:513] Unhandled API Callback for 2 41 

为什么这会发生警告任何想法? 完整的代码在here上可用,在这个代码上我什么也没有改变。 谢谢

回答