Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions WORKSPACE
Original file line number Diff line number Diff line change
Expand Up @@ -119,10 +119,10 @@ http_archive(
name = "xla",
patch_args = ["-p1"],
patches = ["//third_party:xla.patch"],
sha256 = "48a2131b0281352d1066dfece943097cb243c74b6ac4d31aa1b4c7946612d048",
strip_prefix = "xla-c0963d33c5a43c777b306d867c988867bf2bc69e",
sha256 = "fe6856a9a439227f4538e8d7cd17faf020d2eac308dd76a05ec8c9055688fcbc",
strip_prefix = "xla-a1c8f07bd5bc728d1a43e1fcf849bea36226c85e",
urls = [
"https://github.com/openxla/xla/archive/c0963d33c5a43c777b306d867c988867bf2bc69e.zip",
"https://github.com/openxla/xla/archive/a1c8f07bd5bc728d1a43e1fcf849bea36226c85e.zip",
],
)

Expand Down
4 changes: 2 additions & 2 deletions xprof/convert/op_stats_to_overview_page.cc
Original file line number Diff line number Diff line change
Expand Up @@ -571,9 +571,9 @@ void AddLatencyRow(DataTable* data_table, absl::string_view label,
std::unique_ptr<DataTable> GenerateInferenceLatencyDataTable(
const OverviewInferenceLatency& result) {
std::vector<std::vector<std::string>> kColumns = {
{"percentile", "string", "percentile"},
{"percentage", "string", "Percentage"},
{"hostTimeMs", "number", "Host time (in ms)"},
{"deviceTimeMs", "number", "Device time (in ms)"},
{"end_to_end_deviceTimeMs", "number", "Device time end-to-end (in ms)"},
{"communicationTimeMs", "number",
"Host-device communication time (in ms)"},
{"totalTimeMs", "number", "Total latency (in ms)"}};
Expand Down
Loading