You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Replace the scheduler in the old workflow by the new one (#114)
When resubmit, update the scheduler of the old workflow. Otherwise the
workflow will exactly follow the old schedule and one has no opportunity
to update the schedule.
Also update the report printing: print the trust levels and if the
iteration is converged.
Co-authored-by: Han Wang <[email protected]>
"-l", "--list", action='store_true', help="list the Steps of the existing workflow."
92
92
)
93
93
parser_resubmit.add_argument(
94
-
"--reuse", type=str, nargs='+', default=None, help="specify which Steps to reuse."
94
+
"-u", "--reuse", type=str, nargs='+', default=None, help="specify which Steps to reuse."
95
+
)
96
+
parser_resubmit.add_argument(
97
+
"-k", "--keep-schedule", action='store_true', help="if set then keep schedule of the old workflow. otherwise use the schedule defined in the input file"
95
98
)
96
99
parser_resubmit.add_argument(
97
100
"-o", "--old-compatible", action='store_true', help="compatible with old-style input script used in dpgen2 < 0.0.6."
0 commit comments