Skip to content

Commit 2d5f74d

Browse files
zzzariestensorflower-gardener
authored andcommitted
Revert program_id to string to enable seeing the hlo stats table.
PiperOrigin-RevId: 731948020
1 parent 76e7991 commit 2d5f74d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tensorflow/core/profiler/convert/op_stats_to_hlo_stats.cc

+1-1
Original file line numberDiff line numberDiff line change
@@ -142,7 +142,7 @@ std::unique_ptr<tensorflow::profiler::DataTable> CreateHloStatsDataTable(
142142
for (const HloStatsRecord& record : hlo_stats_db.hlo_stats_record()) {
143143
TableRow* row = data_table->AddRow();
144144
row->AddCell(record.rank());
145-
row->AddCell(record.program_id());
145+
row->AddCell(absl::StrCat(record.program_id()));
146146
row->AddCell(record.hlo_category());
147147
row->AddCell(GetHloOpNameFromExpression(record.hlo_expression()));
148148
row->AddCell(record.hlo_expression());

0 commit comments

Comments
 (0)