Skip to content

Commit 6fd093c

Browse files
Profiler Teamcopybara-github
authored andcommitted
No third party file is changed in this CL
PiperOrigin-RevId: 795257850
1 parent f13229b commit 6fd093c

File tree

1 file changed

+7
-2
lines changed

1 file changed

+7
-2
lines changed

plugin/xprof/protobuf/source_stats.proto

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,12 +6,17 @@ message SourceStats {
66
message Metric {
77
// Total number of executions.
88
uint64 occurrences = 1;
9-
// Total self time in picoseconds.
9+
// The total execution time for all HLO operations generated from the
10+
// associated source line, excluding time spent in any child operations.
1011
uint64 self_time_ps = 2;
1112
// Total time (self + children) in picoseconds.
1213
uint64 time_ps = 3;
13-
// Total FLOPs.
14+
// Total number of FLOPS for all the HLO operations generated from the
15+
// associated source line, excluding FLOPS in any child operations.
1416
uint64 flops = 4;
17+
// The average FLOPS utilization for all HLO operations generated from the
18+
// associated source line, excluding FLOPS in any child operations.
19+
double flops_utilization = 5;
1520
}
1621

1722
message FileMetrics {

0 commit comments

Comments
 (0)