Commit 8605044a authored by Your Name's avatar Your Name

timeline test

parent 2662b387
......@@ -362,6 +362,13 @@ def main(_):
elif FLAGS.task_type == 'export':
print("Not Implemented, Do It Yourself!")
tl = timeline.Timeline(run_metadata.step_stats)
ctf = tl.generate_chrome_trace_format()
with open(FLAGS.local_dir +'timeline.json', 'w') as wd:
wd.write(ctf)
print("耗时(分钟):")
print((time.time()-b)/60)
if __name__ == "__main__":
b = time.time()
......@@ -370,9 +377,3 @@ if __name__ == "__main__":
run_metadata = tf.RunMetadata()
tf.logging.set_verbosity(tf.logging.INFO)
tf.app.run(options=ptions, run_metadata=run_metadata)
tl = timeline.Timeline(run_metadata.step_stats)
ctf = tl.generate_chrome_trace_format()
with open(FLAGS.local_dir +'timeline.json', 'w') as wd:
wd.write(ctf)
print("耗时(分钟):")
print((time.time()-b)/60)
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment