How do I resume a run, or rerun everything from scratch?¶
Most CartLoader modules use Makefile-based execution behavior:
- If outputs already exist, completed steps are typically skipped.
- Use
--restartto ignore existing outputs and rerun all steps. - Use
--dry-runto generate the Makefile and inspect planned commands without executing.
Practical workflow¶
- Run normally first.
- If a run was interrupted, rerun the same command to continue from missing targets.
- If inputs/parameters changed and you want a clean rerun, add
--restart. - If you want to inspect what will run, add
--dry-run.
Example¶
1 2 3 4 5 | |
See also: