-
Notifications
You must be signed in to change notification settings - Fork 97
Fix distributed array creation and sorting issues #4242
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
Merged
ajpotts
merged 4 commits into
Bears-R-Us:master
from
ShreyasKhandekar:make-dist-array-always-dist
Apr 22, 2025
Merged
Fix distributed array creation and sorting issues #4242
ajpotts
merged 4 commits into
Bears-R-Us:master
from
ShreyasKhandekar:make-dist-array-always-dist
Apr 22, 2025
Conversation
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
Signed-off-by: Shreyas Khandekar <60454060+ShreyasKhandekar@users.noreply.github.com>
Signed-off-by: Shreyas Khandekar <60454060+ShreyasKhandekar@users.noreply.github.com>
The new implementation of makeDistArray exposed that we were using a non distributed sort in SegStringSort.chpl and this replaces that with the dynamicRadixSort. That in term caused issues with the module initialzation order which cased build failures. This factors out the dynamicTwoArrayRadixSort into it's own small module to avoid this issue Signed-off-by: Shreyas Khandekar <60454060+ShreyasKhandekar@users.noreply.github.com>
e-kayrakli
reviewed
Apr 17, 2025
Signed-off-by: Shreyas Khandekar <60454060+ShreyasKhandekar@users.noreply.github.com>
e4cec8d to
73356c2
Compare
ajpotts
approved these changes
Apr 21, 2025
Contributor
ajpotts
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.
Thanks for fixing this!
e-kayrakli
approved these changes
Apr 21, 2025
Closed
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.
Ensure
makeDistArrayconsistently creates distributed arrays and update sorting implementations to utilize the newmakeDistArray.Address build issues caused by the previous sorting method by refactoring the sorting logic into a dedicated module.
Closes #4233