-
Notifications
You must be signed in to change notification settings - Fork 112
Barrier post-solve, find_dense_columns fix, folding fix #462
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
rapids-bot
merged 4 commits into
NVIDIA:branch-25.10
from
chris-maes:post_solve_fix_25_10
Oct 8, 2025
Merged
Barrier post-solve, find_dense_columns fix, folding fix #462
rapids-bot
merged 4 commits into
NVIDIA:branch-25.10
from
chris-maes:post_solve_fix_25_10
Oct 8, 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
Contributor
Author
|
/ok to test eb140d1 |
rg20
approved these changes
Oct 7, 2025
hlinsen
approved these changes
Oct 7, 2025
Contributor
hlinsen
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.
lgtm
Contributor
Author
|
/ok to test 08cbac2 |
Contributor
Author
|
/ok to test e2449a9 |
Contributor
|
/merge |
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.
Fixes a crash on physciansched6-2 in barrier post-solve.
Fixes a crash on roi5alpha10n8 in
find_dense_columns. There was an undefined memory access because the number of nonzeros in the row was greater than the number of rows. This fix correctly sets the size of the array to the number of columns.Fixes an undefined memory reference on roi5alpha10n8 in folding. The colors array was being realloced an so the reference to the refining color pointed to memory that had been freed. This fix gets a new reference to the refining color on each iteration of the loop that splits colors.