gpt4 book ai didi

tensorflow - Tensorboard - 分析计算时间 - 在运行时统计中一切都是 "unused substructure"

转载 作者:行者123 更新时间:2023-12-04 16:05:24 24 4
gpt4 key购买 nike

Tensorboard 提供运行时统计数据,允许分析内存消耗和计算时间 (see Docu) .
然而,在 tensorflow v1.2.1 中,我的一些操作以虚线和橙色显示为“未使用的子结构”,并且根本不提供任何信息 - 没有设备,没有内存,也没有计算时间。

随着 tensorflow v1.3 的更新,情况变得更糟。现在一切都是橙色虚线“未使用的子结构”tensorboard - missing stats, unused substructure

我在需要优化的各种更大的 tensorflow 项目以及同事的 PC 上尝试了这个。
我做错了什么还是这是 tensorflow /张量板中的错误?

这是一个简约的示例代码:

import tensorflow as tf
from tensorflow.python.client import timeline

sess = tf.InteractiveSession()
run_options = tf.RunOptions(trace_level=tf.RunOptions.FULL_TRACE)
run_metadata = tf.RunMetadata()

# create some dummy Ops for the graph
C1 = tf.constant(5)
C2 = tf.constant(3)
myOp = C1*C2 + tf.square(C2)
res = sess.run([myOp], options=run_options,run_metadata = run_metadata)
writer = tf.summary.FileWriter(logdir='tensorboard/profile_bug',graph=sess.graph)
print (res)

tl = timeline.Timeline(run_metadata.step_stats)
ctf = tl.generate_chrome_trace_format()
with open('tensorboard/timelineOfBug.json', 'w') as f:
f.write(ctf)

writer.add_run_metadata(run_metadata,"mySess")
writer.close()
sess.close()

最佳答案

这是一些新版本的 TF(似乎是 1.2 和 1.3)的问题。更新到 1.4 修复了它。

关于tensorflow - Tensorboard - 分析计算时间 - 在运行时统计中一切都是 "unused substructure",我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45739917/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com