Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

runbatch: Add more explanation to -retry and -reset #49

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions tool/batch.go
Original file line number Diff line number Diff line change
Expand Up @@ -62,8 +62,8 @@ Reflow deposits individual log files into the working directory for
each run in the batch. These are in addition to the standard log
files that are peristed for runs, and are always logged at the debug
level.`
retryFlag := flags.Bool("retry", false, "retry failed runs")
resetFlag := flags.Bool("reset", false, "reset failed runs")
retryFlag := flags.Bool("retry", false, "retry failed runs that have failed and run the ones that never ran.")
resetFlag := flags.Bool("reset", false, "reset the state of the batch from the previous runs and start fresh. All intermediate results that were already computed and stored in the cache from previous runs will be reused.")
gcFlag := flags.Bool("gc", false, "enable runtime garbage collection")
nocacheexternFlag := flags.Bool("nocacheextern", false, "don't cache extern ops")
recomputeemptyFlag := flags.Bool("recomputeempty", false, "recompute empty cache values")
Expand Down