-
Notifications
You must be signed in to change notification settings - Fork 670
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
No need to redirect to the original frame explicitly during deserialization #3722
Merged
Merged
Changes from 23 commits
Commits
Show all changes
24 commits
Select commit
Hold shift + click to select a range
6a667f6
serialize without visit ts
yuxuanzhuang a8a5485
add double pickling test
yuxuanzhuang b358bd2
offset should be the same
yuxuanzhuang 5b035fc
add comment about bufferio
yuxuanzhuang b186584
doc
yuxuanzhuang b1a3770
merge to dev
yuxuanzhuang 8fda4ef
merge to dev
yuxuanzhuang bef41aa
Merge remote-tracking branch 'mda_origin/develop' into opt_serialization
yuxuanzhuang 917dc65
add changelog
yuxuanzhuang bd553c1
add test for preservation of coord after serialization
yuxuanzhuang 884a795
fix h5md setstate
yuxuanzhuang 8535692
fix h5md comments
yuxuanzhuang bce27a3
merge to dev
yuxuanzhuang 8a1222a
merge to dev
yuxuanzhuang dc40dd6
merge to dev
yuxuanzhuang 35354be
Merge branch 'develop' into opt_serialization
orbeckst f6d5716
fixed CHANGELOG
orbeckst 5b6b521
more CHANGELOG fixes
orbeckst f3cc8d3
Apply suggestions from code review
orbeckst 845dede
tng setstate
yuxuanzhuang ff31fc9
Merge branch 'develop' into opt_serialization
yuxuanzhuang 1a6272e
pep8
yuxuanzhuang 6b03f6f
merge to dev
yuxuanzhuang c4014ba
add linked issue
yuxuanzhuang File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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.
There's a change in behaviour here where pickling then unpickling no longer resets a frame to the data held in that frame. E.g. if I load frame 10, then unwrap these coordinates (modifying them from the file held state), then serialise/deserialise that (e.g. in a multiprocessing situation) the frame is now unwrapped on deserialisation. This is probably a good thing (tm). This should probably get explained in an issue and/or changelog entry
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.
Thanks! I have added an issue regarding it #4633