Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

1. add moving average 100us ,1ms 10ms to power metrics. #678

Merged
merged 1 commit into from
Sep 1, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading