@@ -22,7 +22,7 @@ class `PerformanceTestSamples` is collection of `Sample`s and their statistics.
2222class `PerformanceTestResult` is a summary of performance test execution.
2323class `LogParser` converts log files into `PerformanceTestResult`s.
2424class `ResultComparison` compares new and old `PerformanceTestResult`s.
25- class `TestComparator` analyzes changes betweeen the old and new test results.
25+ class `TestComparator` analyzes changes between the old and new test results.
2626class `ReportFormatter` creates the test comparison report in specified format.
2727
2828"""
@@ -111,7 +111,7 @@ def exclude_outliers(self, top_only=False):
111111
112112 Experimentally, this rule seems to perform well-enough on the
113113 benchmark runtimes in the microbenchmark range to filter out
114- the environment noise caused by preemtive multitasking.
114+ the environment noise caused by preemptive multitasking.
115115 """
116116 lo = (
117117 0
@@ -205,7 +205,7 @@ def running_mean_variance(stats, x):
205205
206206 @property
207207 def cv (self ):
208- """Coeficient of Variation (%)."""
208+ """Coefficient of Variation (%)."""
209209 return (self .sd / self .mean ) if self .mean else 0
210210
211211 @property
@@ -225,7 +225,7 @@ class PerformanceTestResult(object):
225225 Reported by the test driver (Benchmark_O, Benchmark_Onone, Benchmark_Osize
226226 or Benchmark_Driver).
227227
228- It suppors 2 log formats emitted by the test driver. Legacy format with
228+ It supports 2 log formats emitted by the test driver. Legacy format with
229229 statistics for normal distribution (MEAN, SD):
230230 #,TEST,SAMPLES,MIN(μs),MAX(μs),MEAN(μs),SD(μs),MEDIAN(μs),MAX_RSS(B)
231231 And new quantiles format with variable number of columns:
@@ -311,7 +311,7 @@ def merge(self, r):
311311 """Merge two results.
312312
313313 Recomputes min, max and mean statistics. If all `samples` are
314- avaliable , it recomputes all the statistics.
314+ available , it recomputes all the statistics.
315315 The use case here is comparing test results parsed from concatenated
316316 log files from multiple runs of benchmark driver.
317317 """
@@ -514,12 +514,12 @@ def results_from_file(log_file):
514514
515515
516516class TestComparator (object ):
517- """Analyzes changes betweeen the old and new test results.
517+ """Analyzes changes between the old and new test results.
518518
519519 It determines which tests were `added`, `removed` and which can be
520520 compared. It then splits the `ResultComparison`s into 3 groups according to
521521 the `delta_threshold` by the change in performance: `increased`,
522- `descreased` and `unchanged`. Whole computaion is performed during
522+ `descreased` and `unchanged`. Whole computation is performed during
523523 initialization and results are provided as properties on this object.
524524
525525 The lists of `added`, `removed` and `unchanged` tests are sorted
@@ -576,7 +576,7 @@ def partition(items, p):
576576
577577
578578class ReportFormatter (object ):
579- """Creates the report from perfromance test comparison in specified format.
579+ """Creates the report from performance test comparison in specified format.
580580
581581 `ReportFormatter` formats the `PerformanceTestResult`s and
582582 `ResultComparison`s provided by `TestComparator` into report table.
0 commit comments