Running Parallel Jobs with Throttling Using tmux
If you need to run a bunch of jobs like python main.py -config X, and You have too many configs: X = A, B, C. Say you wanna run python f.py --config A.json python f.py --config B.json python f.py --config C.json ... You don’t want to overload your computer (if you dispatch all python run jobs all at once it will break) You don’t want to bother with job schedulers (like slurm)...