-
Notifications
You must be signed in to change notification settings - Fork 2
Disk checkpoint storing all time step data #73
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
base: main
Are you sure you want to change the base?
Conversation
jrmaddison
left a comment
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Is there a use case for storing the restart dependencies with a SingleDiskStorageSchedule? This does let you replay the forward, but is there a reason to do that?
| """ | ||
|
|
||
| def __init__(self, move_data=False): | ||
| def __init__(self, move_data=False, store_only_adj_deps=False): |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
| def __init__(self, move_data=False, store_only_adj_deps=False): | |
| def __init__(self, move_data=False, *, store_only_adj_deps=True): |
Default False would be an API break, changing existing behaviour. New arguments should be keyword only.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yes. I just updated it.
It is nothing related to |
Thanks, I see. There's nothing inherently wrong with adding a |
No description provided.