Fix a potential slice bug in se_t descriptor#1087
Merged
amcadmus merged 3 commits intodeepmodeling:develfrom Sep 3, 2021
Merged
Fix a potential slice bug in se_t descriptor#1087amcadmus merged 3 commits intodeepmodeling:develfrom
amcadmus merged 3 commits intodeepmodeling:develfrom
Conversation
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## devel #1087 +/- ##
=======================================
Coverage 75.74% 75.74%
=======================================
Files 88 88
Lines 6996 6996
=======================================
Hits 5299 5299
Misses 1697 1697 ☔ View full report in Codecov by Sentry. |
amcadmus
approved these changes
Sep 3, 2021
amcadmus
approved these changes
Sep 3, 2021
This file contains hidden or 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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
In the code review process, I found that
env_jin se_t type always start the slice from position 0 while the slice size evaluates fromself.sel_a[type_j]due to the setting of thestart_index_j:deepmd-kit/deepmd/descriptor/se_t.py
Lines 462 to 498 in 1a25414
And after the talk with Wanrun, we found that this may lead to repeated values of
env_jwhen there are multiple types of atoms. So I change thestart_index_jvalue to avoid the replication ofenv_j. @amcadmus Please confirm the necessity of this change.Note that this PR will not affect the single-atom type system.