I am trying to run an experiment that was compiled with artiq_compile by using the artiq_master.
So far scheduling a phyton file has worked fine.
But with
sipyco_rpctool 127.0.0.1 3251 call -t master_schedule submit 'main' {'class_name':'Sequence','file':'test.elf','arguments':{},'log_level':10,'repo_rev':'N/A',}
I get
ARTIQ: (40, 'worker(21,test.elf)', 1653386680.6618598, 'root:Terminating with exception (AttributeError: 'NoneType' object has no attribute 'loader')
Traceback (most recent call last):
File "C:\Anaconda3\envs\artiq\lib\site-packages\artiq\master\worker_impl.py", line 282, in main
exp = get_experiment(experiment_file, expid["class_name"])
File "C:\Anaconda3\envs\artiq\lib\site-packages\artiq\master\worker_impl.py", line 133, in get_experiment
module = tools.file_import(file, prefix="artiq_worker_")
File "C:\Anaconda3\envs\artiq\lib\site-packages\artiq\tools.py", line 82, in file_import
module = importlib.util.module_from_spec(spec)
File "<frozen importlib._bootstrap>", line 580, in module_from_spec
AttributeError: 'NoneType' object has no attribute 'loader'')
Is it not possible to submit an .elf file to the master_scheduler?