-
Notifications
You must be signed in to change notification settings - Fork 153
[DONOTMERGE] Refactor root relaxation #976
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
Draft
rg20
wants to merge
31
commits into
NVIDIA:release/26.04
Choose a base branch
from
rg20:root_relaxation
base: release/26.04
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Draft
Changes from all commits
Commits
Show all changes
31 commits
Select commit
Hold shift + click to select a range
d3b7b12
Take advantage of hyper sparsity in dual push
rg20 6aae07d
Initial stab at moving root solves to B&B
rg20 1b6d98a
Move branch and bound problem to inside branch and bound
rg20 e311548
fix link errors
rg20 c522274
Fix link errors
rg20 55b2afb
Fix sync issues
rg20 1d213bd
remove stale code
rg20 9937868
Launch 3 threads, one for dual simplex, one for PDLP+crossover, one f…
rg20 0f1a6f9
Revert "Prepare release/26.04"
AyodeAwe e2ea687
Update to 26.06 (#975)
AyodeAwe d44661d
Unify two constructors
rg20 5309ca4
Merge remote-tracking branch 'upstream/main' into root_relaxation
rg20 c9e39d3
Fix compilation error
rg20 c99e1c3
Optimize right-looking LU factorization with O(1) degree-bucket ops …
rg20 07cb595
crossover: hoist delta_zN and delta_expanded out of dual push loop
rg20 953b83e
Added review comments
rg20 787fadf
Remove code duplication
rg20 197bf8d
keep the dense vector path alive
rg20 990bcd0
Revert "Update to 26.06 (#975)"
rg20 40b9e49
Cleanup unnecessary changes
rg20 c0d1514
Remove unused variable
rg20 3164108
Disable green context
rg20 b920f9a
Move to appropriate file
rg20 f4d0fa5
Cleanup
rg20 9509000
Fix missing entries
rg20 2a1ff14
Cleanup concurrent halt handling
rg20 bb074ac
add missing include
rg20 47daeae
Add missing include
rg20 70ab58f
Handle failures after cut generation cleanly
rg20 14dff02
Fix compilation error
rg20 9a020db
Move the problem conversion to upstream
rg20 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 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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1 +1 @@ | ||
| release/26.04 | ||
| main | ||
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
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
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
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
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.
Avoid pointing release flow to
mainfor this branch marker.Using
mainhere can pull moving-head workflow/config changes into a release line and make builds non-reproducible. Prefer pinning to the release branch/tag used for this train (e.g.,release/26.04or an explicit immutable ref).🤖 Prompt for AI Agents