File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed
examples/benchmarking-scripts Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -49,12 +49,12 @@ def run_pyperformance(revision):
4949
5050if __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 ()
Original file line number Diff line number Diff line change @@ -60,7 +60,7 @@ pkg_only =
6060install = 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 =
You can’t perform that action at this time.
0 commit comments