File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -70,7 +70,7 @@ def main() -> int:
7070 )
7171 p .add_argument ("--budget" , type = int , default = 8000 )
7272 p .add_argument ("--scoring" , default = "hybrid" )
73- p .add_argument ("--workers" , type = int , default = 1 )
73+ p .add_argument ("--workers" , type = int , default = 40 )
7474 p .add_argument ("--top-k" , type = int , default = 3 )
7575 p .add_argument ("--out" , type = Path , required = True )
7676 p .add_argument ("--repos-dir" , type = Path , default = None )
Original file line number Diff line number Diff line change @@ -35,7 +35,7 @@ def main() -> int:
3535 p .add_argument ("--core-budget-fraction" , type = float , default = 0.5 )
3636 p .add_argument ("--budget" , type = int , default = 8000 )
3737 p .add_argument ("--scoring" , default = "hybrid" )
38- p .add_argument ("--workers" , type = int , default = 1 )
38+ p .add_argument ("--workers" , type = int , default = 40 )
3939 p .add_argument ("--out" , type = Path , required = True )
4040 p .add_argument (
4141 "--repos-dir" ,
Original file line number Diff line number Diff line change @@ -64,7 +64,7 @@ def main() -> int:
6464 p = argparse .ArgumentParser (description = __doc__ )
6565 p .add_argument ("--winner" , type = Path , required = True )
6666 p .add_argument ("--manifests-dir" , type = Path , required = True )
67- p .add_argument ("--workers" , type = int , default = 1 )
67+ p .add_argument ("--workers" , type = int , default = 40 )
6868 p .add_argument ("--out" , type = Path , required = True )
6969 p .add_argument ("--repos-dir" , type = Path , default = None )
7070 p .add_argument ("--timeout-per-instance" , type = float , default = 20.0 )
Original file line number Diff line number Diff line change @@ -45,7 +45,7 @@ def main() -> int:
4545 p = argparse .ArgumentParser (description = __doc__ )
4646 p .add_argument ("--candidates" , type = Path , required = True )
4747 p .add_argument ("--manifest" , type = Path , required = True )
48- p .add_argument ("--workers" , type = int , default = 1 )
48+ p .add_argument ("--workers" , type = int , default = 40 )
4949 p .add_argument ("--out" , type = Path , required = True )
5050 p .add_argument ("--repos-dir" , type = Path , default = None )
5151 p .add_argument ("--timeout-per-instance" , type = float , default = 20.0 )
Original file line number Diff line number Diff line change @@ -62,7 +62,7 @@ exec caffeinate -dimsu \
6262 --baseline " ${BASELINE} " \
6363 --winner " ${WINNER_JSON} " \
6464 --manifests-dir benchmarks/manifests/v1 \
65- --workers 2 \
65+ --workers 40 \
6666 --timeout-per-instance 600 \
6767 --min-memory-gb 8 \
6868 --min-disk-gb 30 \
You can’t perform that action at this time.
0 commit comments