diff --git a/frontend/app/components/overview/performance_summary/performance_summary.ts b/frontend/app/components/overview/performance_summary/performance_summary.ts index 925ed667..b526af01 100644 --- a/frontend/app/components/overview/performance_summary/performance_summary.ts +++ b/frontend/app/components/overview/performance_summary/performance_summary.ts @@ -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) { @@ -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, }); }