forked from M-Labs/artiq
Revert "language: check_unprocessed_arguments after constructing experiment"
This reverts commit d7240c17fc
.
This commit is contained in:
parent
d7240c17fc
commit
ec5c1b2478
|
@ -53,8 +53,6 @@ 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")
|
||||
|
|
|
@ -184,9 +184,7 @@ def _build_experiment(device_mgr, dataset_mgr, args):
|
|||
"arguments": arguments
|
||||
}
|
||||
device_mgr.virtual_devices["scheduler"].expid = expid
|
||||
exp_inst = get_experiment(module, args.class_name)(managers)
|
||||
argument_mgr.check_unprocessed_arguments()
|
||||
return exp_inst
|
||||
return get_experiment(module, args.class_name)(managers)
|
||||
|
||||
|
||||
def run(with_file=False):
|
||||
|
|
|
@ -333,7 +333,6 @@ 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()
|
||||
|
|
Loading…
Reference in New Issue