我想使用以下代码调查张量板上的设备放置,以在摘要中生成图表
# Build the summary operation based on the TF collection of Summaries.
summary_op = tf.merge_all_summaries()
saver = tf.train.Saver(tf.all_variables())
summary_writer = tf.train.SummaryWriter(log_directory, graph_def=sess.graph_def)
这适用于显示图表中定义的图表和摘要。但是在张量板上选择“设备放置”时,所有节点都分配给“未知设备”。我是否需要以其他方式转储设备放置?