- Read from `.secret.env` rather than `.env.secret` (if the former doesn't exist, it tries to read from the latter for backward compatibility)
- `RMX_RUN_SWEEP_IDX` is now set correctly on singularity on slurm
- add `writable_tmpfs` option to singularity configuration
This is an example `.rmx.config` for using writable_tmpfs:
"tticslurm": {
"mode": "slurm-sing",
"mount": [],
"mount_from_host": {
"/share/data/ripl-takuma/projects/diffusion-shared-autonomy": "/data",
},
"singularity": {
"sif_file": "/share/data/ripl-takuma/singularity-workspace/diffusha/diffusha.sif",
// "overlay": "/share/data/ripl-takuma/singularity-workspace/diffusha/overlay.img",
"writable_tmpfs": true,
}
}