Skip to content

Commit

Permalink
1. add moving average 100us ,1ms 10ms to power metrics.
Browse files Browse the repository at this point in the history
2. change tooltip error.

PiperOrigin-RevId: 562025931
  • Loading branch information
trisolaran authored and copybara-github committed Sep 1, 2023
1 parent 6413bdc commit 1e03c03
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -90,6 +90,8 @@ export class PerformanceSummary implements OnChanges {
'Percentage of the peak device memory bandwidth that is used.';
deviceDutyCycleTooltipMessage =
'Percentage of the device time that is busy.';
powerMetricsTooltipMessage =
'Avg/Max power consumption of different components/rails, including max of moving average of window size of 100us/1ms/10ms.';

ngOnChanges(changes: SimpleChanges) {
if (!this.generalAnalysis || !this.inputPipelineAnalysis) {
Expand Down Expand Up @@ -228,7 +230,7 @@ export class PerformanceSummary implements OnChanges {
this.summaryInfoAfter.push({
title: 'Power Metrics',
descriptions: ['Power consumption of different compoenents'],
tooltip: this.opTimeInEagerModeTooltipMessage,
tooltip: this.powerMetricsTooltipMessage,
propertyValues: components,
});
}
Expand Down

0 comments on commit 1e03c03

Please sign in to comment.