From d7240c17fc92b38685233563ac7528f2c2cc577b Mon Sep 17 00:00:00 2001 From: Nico Pulido Date: Wed, 23 Nov 2022 15:34:21 +0100 Subject: [PATCH] language: check_unprocessed_arguments after constructing experiment Signed-off-by: Nico Pulido-Mateo --- artiq/frontend/artiq_compile.py | 2 ++ artiq/frontend/artiq_run.py | 4 +++- artiq/master/worker_impl.py | 1 + 3 files changed, 6 insertions(+), 1 deletion(-) diff --git a/artiq/frontend/artiq_compile.py b/artiq/frontend/artiq_compile.py index 1609971e0..918a58c65 100755 --- a/artiq/frontend/artiq_compile.py +++ b/artiq/frontend/artiq_compile.py @@ -53,6 +53,8 @@ def main(): arguments = parse_arguments(args.arguments) argument_mgr = ProcessArgumentManager(arguments) exp_inst = exp((device_mgr, dataset_mgr, argument_mgr, {})) + argument_mgr.check_unprocessed_arguments() + if not hasattr(exp.run, "artiq_embedded"): raise ValueError("Experiment entry point must be a kernel") diff --git a/artiq/frontend/artiq_run.py b/artiq/frontend/artiq_run.py index 21baf3f05..c3d548c26 100755 --- a/artiq/frontend/artiq_run.py +++ b/artiq/frontend/artiq_run.py @@ -184,7 +184,9 @@ def _build_experiment(device_mgr, dataset_mgr, args): "arguments": arguments } device_mgr.virtual_devices["scheduler"].expid = expid - return get_experiment(module, args.class_name)(managers) + exp_inst = get_experiment(module, args.class_name)(managers) + argument_mgr.check_unprocessed_arguments() + return exp_inst def run(with_file=False): diff --git a/artiq/master/worker_impl.py b/artiq/master/worker_impl.py index 33d34ddf8..45c7308c0 100644 --- a/artiq/master/worker_impl.py +++ b/artiq/master/worker_impl.py @@ -333,6 +333,7 @@ def main(): os.chdir(dirname) argument_mgr = ProcessArgumentManager(expid["arguments"]) exp_inst = exp((device_mgr, dataset_mgr, argument_mgr, {})) + argument_mgr.check_unprocessed_arguments() put_completed() elif action == "prepare": exp_inst.prepare()