View source on GitHub |
Starts a trace to record computation graphs and profiling information.
tf.summary.trace_on(
graph=True, profiler=False
)
Must be invoked in eager mode.
When enabled, TensorFlow runtime will collect information that can later be exported and consumed by TensorBoard. The trace is activated across the entire TensorFlow runtime and affects all threads of execution.
To stop the trace and export the collected information, use
tf.summary.trace_export
. To stop the trace without exporting, use
tf.summary.trace_off
.