File tree Expand file tree Collapse file tree 1 file changed +7
-2
lines changed Expand file tree Collapse file tree 1 file changed +7
-2
lines changed Original file line number Diff line number Diff 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 {
You can’t perform that action at this time.
0 commit comments