Skip to content

Commit

Permalink
Use <ul> and <li> tags for the step time breakdown
Browse files Browse the repository at this point in the history
  • Loading branch information
qiuminxu authored and Qiumin Xu committed Dec 13, 2018
1 parent 72b3c15 commit 750069a
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions tensorboard/plugins/profile/overview_page/overview-page.html
Original file line number Diff line number Diff line change
Expand Up @@ -105,8 +105,10 @@
<paper-card heading="Performance Summary">
<div class="card-content">
<p><b>Average step time</b> (lower is better): <b><span class="steptime-average" >[[_steptime_ms_average]] ms</span> </b> <i style="opacity:0.7">(standard deviation = <span>[[_steptime_ms_stddev]]</span> ms)</i></p>
<p>- Average infeed: <span>[[_infeed_ms_average]]</span> ms</p>
<p>- Average compute: <span>[[_compute_ms_average]]</span> ms</p>
<ul hidden$=[[!_infeed_ms_average]]>
<li>Average infeed: <span>[[_infeed_ms_average]]</span> ms</li>
<li>Average compute: <span>[[_compute_ms_average]]</span> ms</li>
</ul>
<p><b>Host idle time</b> (lower is better): <span>[[_host_idle_time_percent]]</span></p>
<p><b>TPU idle time</b> (lower is better): <span>[[_device_idle_time_percent]]</p>
<p><b>Utilization of TPU Matrix Units</b> (higher is better): <span>[[_mxu_utilization_percent]]</span></p>
Expand Down Expand Up @@ -208,8 +210,8 @@
_mxu_utilization_percent: { type: String },
_steptime_ms_average: { type: String },
_steptime_ms_stddev: { type: String },
_infeed_ms_average: { type: String },
_compute_ms_average: { type: String },
_infeed_ms_average: { type: String, value: '' },
_compute_ms_average: { type: String, value: '' },
_top_ops_heading: { type: String },
_error_message: { type: String },
_host_count: { type: String },
Expand Down

0 comments on commit 750069a

Please sign in to comment.