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

Typos: benchmark folder #75021

Merged
merged 2 commits into from
Jul 8, 2024
Merged
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion benchmark/scripts/compare_perf_tests.py
Original file line number Diff line number Diff line change
Expand Up @@ -564,7 +564,7 @@ class TestComparator(object):
It determines which tests were `added`, `removed` and which can be
compared. It then splits the `ResultComparison`s into 3 groups according to
the `delta_threshold` by the change in performance: `increased`,
`descreased` and `unchanged`. Whole computation is performed during
`decreased` and `unchanged`. Whole computation is performed during
initialization and results are provided as properties on this object.

The lists of `added`, `removed` and `unchanged` tests are sorted
Expand Down
2 changes: 1 addition & 1 deletion benchmark/scripts/test_compare_perf_tests.py
Original file line number Diff line number Diff line change
Expand Up @@ -629,7 +629,7 @@ def test_values(self):
)

def test_justified_columns(self):
"""Table columns are all formated with same width, defined by the
"""Table columns are all formatted with same width, defined by the
longest value.
"""
self.assert_markdown_contains(
Expand Down
2 changes: 1 addition & 1 deletion benchmark/scripts/test_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ class Mock(object):
"""

def __init__(self, responses=None):
"""Optionaly initialized with a list of expected calls. See expect."""
"""Optionally initialized with a list of expected calls. See expect."""
self.calls = []
self.expected = []
self.respond = dict()
Expand Down
2 changes: 1 addition & 1 deletion benchmark/single-source/SortIntPyramids.swift
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ let pyramidTemplate: [Int] = (1...pH) + (1...pH).reversed()
// A^R - reversed array A, + - array concatenation operator,
// A indices are in range 1...A.length.
// define adjacent pyramid as A + A^R + A + A^R,
// defne adjacent pyramid hight as A[A.length].
// define adjacent pyramid height as A[A.length].


// On 25% of following dataset stdlib sorting function will use heapSort.
Expand Down