Skip to content

Commit

Permalink
Add host analysis to TPU timeline.
Browse files Browse the repository at this point in the history
PiperOrigin-RevId: 570139622
  • Loading branch information
cliveverghese authored and copybara-github committed Oct 2, 2023
1 parent 37244f5 commit c424c50
Showing 1 changed file with 6 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ syntax = "proto3";
package tensorboard_plugin_profile;

message OpInstance {
uint64 start_time_ns = 1;
uint64 duration_ns = 2;
uint64 start_time_ps = 1;
uint64 duration_ps = 2;
}

message DcnSlack {
Expand Down Expand Up @@ -52,6 +52,8 @@ message DcnSlack {
OpInstance recv_done = 12;

string transfer_type = 13;

OpInstance host_graph_execution = 14;
}

message DcnSlackSummary {
Expand Down Expand Up @@ -80,6 +82,8 @@ message DcnSlackSummary {
uint64 recv_done_duration_us = 12;

string transfer_type = 13;

int64 host_stall_us = 14;
}

message DcnSlackAnalysis {
Expand Down

0 comments on commit c424c50

Please sign in to comment.