Skip to content

Commit 4c92bf8

Browse files
authored
Merge pull request #60 from rgsl888prabhu/branch-25.08-merge-25.05
Branch 25.08 merge 25.05
2 parents f901f17 + 7a7801e commit 4c92bf8

File tree

10 files changed

+11
-17
lines changed

10 files changed

+11
-17
lines changed

.github/workflows/build.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ jobs:
4141
secrets: inherit
4242
uses: rapidsai/shared-workflows/.github/workflows/[email protected]
4343
with:
44-
matrix_filter: map(select((.CUDA_VER | startswith("12")) and .PY_VER == "3.12"))
44+
matrix_filter: map(select((.CUDA_VER | startswith("12")) and .PY_VER != "3.13"))
4545
build_type: ${{ inputs.build_type || 'branch' }}
4646
branch: ${{ inputs.branch }}
4747
date: ${{ inputs.date }}

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
NVIDIA® cuOpt™ is a GPU-accelerated optimization engine that excels in mixed integer linear programming (MILP), linear programming (LP), and vehicle routing problems (VRP). It enables near real-time solutions for large-scale challenges with millions of variables and constraints, offering
66
easy integration into existing solvers and seamless deployment across hybrid and multi-cloud environments.
77

8-
Core engine is written in C++ which is wrapped into C API, Python API and Server API.
8+
The core engine is written in C++ and wrapped with a C API, Python API and Server API.
99

1010
For the latest stable version ensure you are on the `main` branch.
1111

@@ -60,7 +60,7 @@ on the major version of CUDA available in your environment:
6060
For CUDA 12.x:
6161

6262
```bash
63-
pip install --extra-index-url=https://pypi.nvidia.com cuopt-server-cu12==25.5 cuopt-sh-client==25.5 nvidia-cuda-runtime-cu12==12.8.*
63+
pip install --extra-index-url=https://pypi.nvidia.com cuopt-server-cu12==25.5.* cuopt-sh-client==25.5.* nvidia-cuda-runtime-cu12==12.8.*
6464
```
6565

6666
### Conda
@@ -106,4 +106,4 @@ Review the [CONTRIBUTING.md](CONTRIBUTING.md) file for information on how to con
106106
- [cuopt (Server) documentation](https://docs.nvidia.com/cuopt/user-guide/latest/cuopt-server/index.html)
107107
- [Examples and Notebooks](https://github.com/NVIDIA/cuopt-examples)
108108
- [Test cuopt with NVIDIA Launchable](https://brev.nvidia.com/launchable/deploy?launchableID=env-2qIG6yjGKDtdMSjXHcuZX12mDNJ): Examples notebooks are pulled and hosted on [NVIDIA Launchable](https://docs.nvidia.com/brev/latest/).
109-
- [Test cuopt on Google Colab](https://colab.research.google.com/github/nvidia/cuopt-examples/): Examples notebooks can be opened in Google Colab. Please note that you need to choose a `Runtime` as `GPU` in order to run the notebooks.
109+
- [Test cuopt on Google Colab](https://colab.research.google.com/github/nvidia/cuopt-examples/): Examples notebooks can be opened in Google Colab. Please note that you need to choose a `Runtime` as `GPU` in order to run the notebooks.

conda/recipes/cuopt-server/recipe.yaml

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -40,9 +40,6 @@ requirements:
4040
- pandas>=2
4141
- python
4242
- uvicorn ${{ uvicorn_version }}
43-
ignore_run_exports:
44-
by_name:
45-
- python_abi
4643

4744
tests:
4845
- python:

conda/recipes/cuopt-sh-client/recipe.yaml

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -31,9 +31,6 @@ requirements:
3131
- msgpack-python =1.0.8
3232
- python
3333
- requests
34-
ignore_run_exports:
35-
by_name:
36-
- python_abi
3734

3835
tests:
3936
- python:

docs/cuopt/source/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@
106106
master_doc = "index"
107107

108108
# General information about the project.
109-
project = "cuopt"
109+
project = "NVIDIA cuOpt"
110110
copyright = f"2021-{datetime.datetime.today().year}, NVIDIA Corporation"
111111
author = "NVIDIA Corporation"
112112

docs/cuopt/source/cuopt-c/quick-start.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ This wheel is a Python wrapper around the C++ library and eases installation and
2020
2121
# This is a deprecated module and no longer used, but it shares the same name for the CLI, so we need to uninstall it first if it exists.
2222
pip uninstall cuopt-thin-client
23-
pip install --extra-index-url=https://pypi.nvidia.com libcuopt-cu12==25.5.* nvidia-cuda-runtime-cu12==12.8.0
23+
pip install --extra-index-url=https://pypi.nvidia.com libcuopt-cu12==25.5.* nvidia-cuda-runtime-cu12==12.8.*
2424
2525
2626
Conda

docs/cuopt/source/cuopt-python/quick-start.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ NVIDIA cuOpt is also available as a container from Docker Hub:
3737

3838
.. code-block:: bash
3939
40-
docker pull nvidia/cuopt:25.5.0
40+
docker pull nvidia/cuopt:25.5.0-cuda12.8-py312
4141
4242
The container includes both the Python API and self-hosted server components. To run the container:
4343

docs/cuopt/source/cuopt-server/quick-start.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ For CUDA 12.x:
1212

1313
.. code-block:: bash
1414
15-
pip install --extra-index-url=https://pypi.nvidia.com cuopt-server-cu12==25.05.* cuopt-sh-client==25.05.* nvidia-cuda-runtime-cu12==12.8.*
15+
pip install --extra-index-url=https://pypi.nvidia.com cuopt-server-cu12==25.5.* cuopt-sh-client==25.5.* nvidia-cuda-runtime-cu12==12.8.*
1616
1717
1818
Conda
@@ -227,4 +227,4 @@ Example Response:
227227
"total_solve_time": 0.10999655723571777
228228
},
229229
"reqId": "afea72c2-6c76-45ce-bcf7-0d55049f32e4"
230-
}
230+
}

docs/cuopt/source/faq.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ General FAQ
1313

1414
.. dropdown:: How to get a NVAIE license?
1515

16-
Please refer to `NVIDIA NVAIE <https://www.nvidia.com/en-us/technologies/ai-enterprise/nvaie/>`_ for more information.
16+
Please refer to `NVIDIA NVAIE <https://www.nvidia.com/en-us/data-center/products/ai-enterprise/>`_ for more information.
1717

1818
.. dropdown:: How to access NGC registry?
1919

python/cuopt_self_hosted/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ readme = { file = "README.md", content-type = "text/markdown" }
2828
authors = [
2929
{ name = "NVIDIA Corporation" },
3030
]
31-
license = "Apache-2.0"
31+
license = { text = "Apache-2.0" }
3232
requires-python = ">=3.10"
3333
dependencies = [
3434
"cuopt-mps-parser==25.5.*,>=0.0.0a0",

0 commit comments

Comments
 (0)