Skip to content

Commit 20264d5

Browse files
committed
Address feedback
1 parent 1980788 commit 20264d5

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

examples/benchmarking-scripts/backfill.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -49,12 +49,12 @@ def run_pyperformance(revision):
4949

5050
if __name__ == "__main__":
5151
original_sigint_handler = signal.signal(signal.SIGINT, signal.SIG_IGN)
52-
pool = Pool(10)
52+
pool = Pool(8)
5353
signal.signal(signal.SIGINT, original_sigint_handler)
5454
try:
5555
res = pool.map_async(run_pyperformance, get_revisions())
5656
# Without the timeout this blocking call ignores all signals.
57-
res.get(600)
57+
res.get(86400)
5858
except KeyboardInterrupt:
5959
print("Caught KeyboardInterrupt, terminating workers")
6060
pool.terminate()

examples/benchmarking-scripts/benchmark.conf.in

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ pkg_only =
6060
install = True
6161

6262
# Specify '-j' parameter in 'make' command
63-
jobs = 32
63+
jobs = 24
6464

6565
[run_benchmark]
6666
# Run "sudo python3 -m pyperf system tune" before running benchmarks?
@@ -96,7 +96,7 @@ branches = main
9696

9797
# List of revisions to benchmark by compile_all
9898
[compile_all_revisions]
99-
# list of 'sha1=' (default branch: 'master') or 'sha1=branch'
99+
# list of 'sha1=' (default branch: 'main') or 'sha1=branch'
100100
# used by the "pyperformance compile_all" command
101101
# e.g.:
102102
# 11159d2c9d6616497ef4cc62953a5c3cc8454afb =

0 commit comments

Comments
 (0)