Skip to content

Commit

Permalink
Add std dev for new percentiles.
Browse files Browse the repository at this point in the history
  • Loading branch information
aemous committed Jan 24, 2025
1 parent b48a391 commit ab979fd
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions scripts/performance/summarize
Original file line number Diff line number Diff line change
Expand Up @@ -269,10 +269,14 @@ class Summarizer:
}
if self._compute_percentiles:
output.update({
'p50_memory': self.p50_memory,
'p95_memory': self.p95_memory,
'p50_cpu': self.p50_cpu,
'std_dev_p95_memory': self.std_dev_p95_memory,
'p50_memory': self.p50_memory,
'std_dev_p50_memory': self.std_dev_p50_memory,
'p95_cpu': self.p95_cpu,
'std_dev_p95_cpu': self.std_dev_p95_cpu,
'p50_cpu': self.p50_cpu,
'std_dev_p50_cpu': self.std_dev_p50_cpu,
})
return json.dumps(output, indent=2)

Expand Down

0 comments on commit ab979fd

Please sign in to comment.