Skip to content

Commit 762d4be

Browse files
author
Daniel Nichols
committed
fixed missing arg
1 parent e38b748 commit 762d4be

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

drivers/run-all.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -58,11 +58,11 @@ def get_args():
5858
parser.add_argument("--log-runs", action="store_true", help="Display the stderr and stdout of runs.")
5959
return parser.parse_args()
6060

61-
def get_driver(prompt: dict, scratch_dir: Optional[os.PathLike], launch_configs: dict, problem_sizes: dict, dry: bool, **kwargs) -> DriverWrapper:
61+
def get_driver(prompt: dict, scratch_dir: Optional[os.PathLike], launch_configs: dict, build_configs: dict, problem_sizes: dict, dry: bool, **kwargs) -> DriverWrapper:
6262
""" Get the language drive wrapper for this prompt """
6363
driver_cls = LANGUAGE_DRIVERS[prompt["language"]]
6464
return driver_cls(parallelism_model=prompt["parallelism_model"], launch_configs=launch_configs,
65-
problem_sizes=problem_sizes, scratch_dir=scratch_dir, dry=dry, **kwargs)
65+
build_configs=build_configs, problem_sizes=problem_sizes, scratch_dir=scratch_dir, dry=dry, **kwargs)
6666

6767
def already_has_results(prompt: dict) -> bool:
6868
""" Check if a prompt already has results stored in it. """

0 commit comments

Comments
 (0)