Hello, I'm new to ARTIQ and am getting the system set up for the lab I am in. I had some network problems but believe I connected the PC and Kasli-SOC. It seems like the next step is to make sure that the commands 'artiq_sinara_tester' and 'artiq_run led.py' are working. When I execute these commands, they both end up with the same error and I haven't seen any information on similar errors.
When running 'artiq_run led.py' I get the following error (led.py is the same as led0.py):
(artiq) PS C:\Users\QC_Control.conda\envs\artiq\Lib\site-packages\artiq> artiq_run led0.py
Traceback (most recent call last):
File "C:\Users\QC_Control\.conda\envs\artiq\Scripts\artiq_run-script.py", line 9, in <module>
sys.exit(main())
File "C:\Users\QC_Control\.conda\envs\artiq\lib\site-packages\artiq\frontend\artiq_run.py", line 224, in main
return run(with_file=True)
File "C:\Users\QC_Control\.conda\envs\artiq\lib\site-packages\artiq\frontend\artiq_run.py", line 210, in run
raise exn
File "C:\Users\QC_Control\.conda\envs\artiq\lib\site-packages\artiq\frontend\artiq_run.py", line 203, in run
exp_inst.run()
File "C:\Users\QC_Control\.conda\envs\artiq\lib\site-packages\artiq\language\core.py", line 54, in run_on_core
return getattr(self, arg).run(run_on_core, ((self,) + k_args), k_kwargs)
File "C:\Users\QC_Control\.conda\envs\artiq\lib\site-packages\artiq\coredevice\core.py", line 140, in run
self._run_compiled(kernel_library, embedding_map, symbolizer, demangler)
File "C:\Users\QC_Control\.conda\envs\artiq\lib\site-packages\artiq\coredevice\core.py", line 128, in _run_compiled
self.comm.load(kernel_library)
File "C:\Users\QC_Control\.conda\envs\artiq\lib\site-packages\artiq\coredevice\comm_kernel.py", line 381, in load
raise LoadError(self._read_string())
artiq.coredevice.comm_kernel.LoadError: core1 failed to process data
When I run 'artiq_sinara_tester' I get a similar error:
(artiq) PS C:\Users\QC_Control.conda\envs\artiq\Lib\site-packages\artiq> artiq_run led0.py
Traceback (most recent call last):
File "C:\Users\QC_Control\.conda\envs\artiq\Scripts\artiq_run-script.py", line 9, in <module>
sys.exit(main())
File "C:\Users\QC_Control\.conda\envs\artiq\lib\site-packages\artiq\frontend\artiq_run.py", line 224, in main
return run(with_file=True)
File "C:\Users\QC_Control\.conda\envs\artiq\lib\site-packages\artiq\frontend\artiq_run.py", line 210, in run
raise exn
File "C:\Users\QC_Control\.conda\envs\artiq\lib\site-packages\artiq\frontend\artiq_run.py", line 203, in run
exp_inst.run()
File "C:\Users\QC_Control\.conda\envs\artiq\lib\site-packages\artiq\language\core.py", line 54, in run_on_core
return getattr(self, arg).run(run_on_core, ((self,) + k_args), k_kwargs)
File "C:\Users\QC_Control\.conda\envs\artiq\lib\site-packages\artiq\coredevice\core.py", line 140, in run
self._run_compiled(kernel_library, embedding_map, symbolizer, demangler)
File "C:\Users\QC_Control\.conda\envs\artiq\lib\site-packages\artiq\coredevice\core.py", line 128, in _run_compiled
self.comm.load(kernel_library)
File "C:\Users\QC_Control\.conda\envs\artiq\lib\site-packages\artiq\coredevice\comm_kernel.py", line 381, in load
raise LoadError(self._read_string())
artiq.coredevice.comm_kernel.LoadError: core1 failed to process data
If more information like the output of 'artiq_coremgmt log' might be useful I can also share that. Any help figuring this out is appreciated.