Skip to content

Commit

Permalink
Merge pull request #103 from perftool-incubator/dev-kmr
Browse files Browse the repository at this point in the history
add period length (in seconds) to the result summary
  • Loading branch information
k-rister authored Dec 6, 2023
2 parents db2477a + a1838de commit 5287bb5
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions queries/cdmq/get-result-summary.js
Original file line number Diff line number Diff line change
Expand Up @@ -272,6 +272,12 @@ runIds.forEach((runId) => {
iterPrimaryPeriodRanges[i][j].end,
noHtml
);
logOutput(
' period length: ' +
(iterPrimaryPeriodRanges[i][j].end - iterPrimaryPeriodRanges[i][j].begin) / 1000 +
' seconds',
noHtml
);
//for (var k=0; k<benchmarks.length; k++) {
var primaryMetrics = list(iterPrimaryMetrics[i]);
for (var k = 0; k < primaryMetrics.length; k++) {
Expand Down

0 comments on commit 5287bb5

Please sign in to comment.