I understand that ARTIQ saves
- artiq_version
- datasets (from
set_dataset(...)
) - expid (which contains
log_level
, file ran, class used, and arguments fromsetattr_argument(...)
) - rid
- run_time
- start_time
into an HDF5 file stored under~/artiq-master/results/<date>/<hour>
each time aFILE
is submitted and ran.
How do I get it to save under a custom folder? I understand that I can use artiq_run -o HDF5 FILE
to save it to HDF5
, but can I also do it from the dashboard or specify it from within the FILE
itself?
This is so that I can do some folder management on my side to group HDF5 files according to the type of the experiment instead of the time of the experiment. I would be happy to learn of other ways to do this (other than what I mentioned above); it is just that the experimental contexts are not immediately obvious from the HDF5 filenames and directories in which they are stored before we open them and see what is inside.