Skip to content

Commit 17b96b1

Browse files
authored
Add Performance Regression tests to CI (#282)
* Add a benchmark_comment workflow on pull requests Signed-off-by: Fabrice Normandin <[email protected]> * Tweak the test parameterization Signed-off-by: Fabrice Normandin <[email protected]> * Fix tiny bug in perf test for Py3.7 Signed-off-by: Fabrice Normandin <[email protected]> --------- Signed-off-by: Fabrice Normandin <[email protected]>
1 parent edb897e commit 17b96b1

File tree

3 files changed

+80
-4
lines changed

3 files changed

+80
-4
lines changed

.github/workflows/benchmark.yml

+13-4
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ permissions:
1515

1616
jobs:
1717
benchmark:
18-
name: Run pytest-benchmark benchmark example
18+
name: Run benchmark-action
1919
runs-on: ubuntu-latest
2020
steps:
2121
- uses: actions/checkout@v3
@@ -24,11 +24,18 @@ jobs:
2424
with:
2525
python-version: 3.11
2626
cache: "pip"
27+
2728
- name: Install dependencies
2829
run: |
2930
python -m pip install --upgrade pip
3031
pip install -e .[all]
3132
33+
- name: Download previous benchmark data
34+
uses: actions/cache@v3
35+
with:
36+
path: ./cache
37+
key: ${{ runner.os }}-benchmark
38+
3239
- name: Run benchmark
3340
run: |
3441
pytest --benchmark-only --benchmark-json=.benchmark_output.json
@@ -41,15 +48,17 @@ jobs:
4148
# Where the output from the benchmark tool is stored
4249
output-file-path: .benchmark_output.json
4350
# # Where the previous data file is stored
44-
# external-data-json-path: ./cache/benchmark-data.json
51+
external-data-json-path: ./cache/benchmark-master.json
4552
# Use personal access token instead of GITHUB_TOKEN due to https://github.community/t/github-action-not-triggering-gh-pages-upon-push/16096
4653
github-token: ${{ secrets.GITHUB_TOKEN }}
4754
# NOTE: auto-push must be false when external-data-json-path is set since this action
4855
# reads/writes the given JSON file and never pushes to remote
49-
auto-push: true
56+
auto-push: false
5057
# Show alert with commit comment on detecting possible performance regression
51-
alert-threshold: '200%'
58+
alert-threshold: '150%'
5259
comment-on-alert: true
60+
# Enable Job Summary for PRs
61+
summary-always: true
5362
# Workflow will fail when an alert happens
5463
fail-on-alert: true
5564
alert-comment-cc-users: '@lebrice'
+41
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,41 @@
1+
name: Compare Performance with Master
2+
on:
3+
pull_request:
4+
branches:
5+
- master
6+
7+
jobs:
8+
benchmark:
9+
name: Run pytest-benchmark
10+
runs-on: ubuntu-latest
11+
steps:
12+
- uses: actions/checkout@v3
13+
- name: Set up Python 3.11
14+
uses: actions/setup-python@v3
15+
with:
16+
python-version: 3.11
17+
cache: "pip"
18+
- name: Install dependencies
19+
run: |
20+
python -m pip install --upgrade pip
21+
pip install -e .[all]
22+
23+
- name: Unit tests with Pytest
24+
run: |
25+
pytest --benchmark-only --benchmark-json=benchmark_results.json
26+
27+
- name: Download artifact
28+
uses: dawidd6/action-download-artifact@v2
29+
with:
30+
github_token: ${{ github.token }}
31+
workflow: upload.yml
32+
name: benchmark_results
33+
path: old_benchmark
34+
commit: ${{github.event.pull_request.base.sha}}
35+
continue-on-error: true
36+
37+
- name: Run the action
38+
uses: nils-braun/pytest-benchmark-commenter@v2
39+
with:
40+
benchmark-file: benchmark_results.json
41+
comparison-benchmark-file: "old_benchmark/benchmark_results.json"

test/test_performance.py

+26
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
import functools
22
import importlib
3+
from pathlib import Path
34
import sys
45
from typing import Callable, TypeVar
56
import pytest
@@ -48,6 +49,9 @@ def test_import_performance(benchmark: BenchmarkFixture):
4849
benchmark(call_before(unimport_sp, import_sp))
4950

5051

52+
@pytest.mark.benchmark(
53+
group="parse",
54+
)
5155
def test_parse_performance(benchmark: BenchmarkFixture):
5256
import simple_parsing as sp
5357
from test.nesting.example_use_cases import HyperParameters
@@ -57,3 +61,25 @@ def test_parse_performance(benchmark: BenchmarkFixture):
5761
HyperParameters,
5862
args="--age_group.num_layers 5 --age_group.num_units 65 ",
5963
)
64+
65+
66+
@pytest.mark.benchmark(
67+
group="serialization",
68+
)
69+
@pytest.mark.parametrize("filetype", [".yaml", ".json", ".pkl"])
70+
def test_serialization_performance(benchmark: BenchmarkFixture, tmp_path: Path, filetype: str):
71+
from simple_parsing.helpers.serialization import save, load
72+
from test.test_huggingface_compat import TrainingArguments
73+
74+
args = TrainingArguments()
75+
path = (tmp_path / "bob").with_suffix(filetype)
76+
77+
def save_and_load():
78+
clear_lru_caches()
79+
# NOTE: can't just use unlink(missing_ok=True) since python3.7 doesn't have it.
80+
if path.exists():
81+
path.unlink()
82+
save(args, path)
83+
assert load(TrainingArguments, path) == args
84+
85+
benchmark(save_and_load)

0 commit comments

Comments
 (0)