-
Notifications
You must be signed in to change notification settings - Fork 1
delete_file_on_restart: false wrongly stops scans from resuming with the hdf5_v1 printer
#485
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: master
Are you sure you want to change the base?
Changes from all commits
db77e65
727542e
f561f72
fb18fab
43b71a9
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -61,7 +61,7 @@ void usage() | |
| "\n them from <filename>. Filenames are to be supplied in a single" | ||
| "\n ascii file, on separate lines." | ||
| "\n In this mode <filename> will only be used for naming the output" | ||
| "\n file (Note: WITHOUT the usual addition of '_temp_combined'!!!)." | ||
| "\n file (Note: WITHOUT the usual addition of '_combined'!!!)." | ||
|
Collaborator
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Does this mean that my naive restart test that doesn't include the _combined name is using the combine script incorrectly?
Collaborator
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Is this actually the combine code that GAMBIT runs? Looks to me like this is just a standalone program -- and one we don't really use, since we typically use the Python script?
Collaborator
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. From the Core Meeting: This file never gets run, and can probably be deleted/moved to code storage. |
||
| "\n All files must have the same <group>." | ||
| "\n Note: Auxilliary ('RA') datasets will be IGNORED! These should" | ||
| "\n be combined during 'normal' combination of results from a single" | ||
|
|
@@ -196,7 +196,7 @@ int main(int argc, char* argv[]) | |
|
|
||
| // Name of temporary combined file, if one exists | ||
| std::ostringstream name; | ||
| name << finalfile << "_temp_combined"; | ||
| name << finalfile << "_combined"; | ||
| tmp_comb_file = name.str(); | ||
|
|
||
| combined_file_exists = Utils::file_exists(tmp_comb_file); | ||
|
|
||
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.
This is probably the relevant part for my comment about restarting overwriting data.