Create a bash script to run mps files in parallel#87
Merged
rapids-bot[bot] merged 7 commits intoNVIDIA:branch-25.08from Jul 20, 2025
Merged
Create a bash script to run mps files in parallel#87rapids-bot[bot] merged 7 commits intoNVIDIA:branch-25.08from
rapids-bot[bot] merged 7 commits intoNVIDIA:branch-25.08from
Conversation
Collaborator
rgsl888prabhu
left a comment
There was a problem hiding this comment.
@rg20 This is an awesome addition, just had few comments.
| --mip-heuristics-only Run mip heuristics only | ||
| --write-log-file Write log file | ||
| --num-cpu-threads Number of CPU threads to use | ||
| --batch-num Batch number |
Collaborator
There was a problem hiding this comment.
May be more details on batch number and n-batches and does it support LP or MIP or both.
Collaborator
There was a problem hiding this comment.
Do we need to expand more on these options ?
Contributor
Author
There was a problem hiding this comment.
added notes and example on the batch num
We have run_mip.cpp script that we have been using, I moved all the options from there here. If need more, we can add. But for now this is good, I think.
Co-authored-by: Ramakrishnap <42624703+rgsl888prabhu@users.noreply.github.com>
Contributor
Author
|
/ok to test 3aae928 |
rgsl888prabhu
approved these changes
Jul 18, 2025
Contributor
Author
|
/merge |
jieyibi
pushed a commit
to yining043/cuopt
that referenced
this pull request
Mar 26, 2026
This PR adds a bash script to run all mps files in a given directory in parallel. This should replace run_mip and run_pdlp scripts. The script uses file locking to enable all free gpus to grab the next available mps file so that load balancing is ensured. Authors: - Rajesh Gandham (https://github.com/rg20) Approvers: - Ramakrishnap (https://github.com/rgsl888prabhu) URL: NVIDIA#87
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.
This PR adds a bash script to run all mps files in a given directory in parallel. This should replace run_mip and run_pdlp scripts.
The script uses file locking to enable all free gpus to grab the next available mps file so that load balancing is ensured.