You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -115,13 +112,13 @@ Users can pull the cuOpt container from the NVIDIA container registry.
115
112
116
113
```bash
117
114
# For CUDA 12.x
118
-
docker pull nvidia/cuopt:latest-cuda12.9-py312
115
+
docker pull nvidia/cuopt:latest-cuda12.9-py3.13
119
116
120
117
# For CUDA 13.x
121
-
docker pull nvidia/cuopt:latest-cuda13.0-py312
118
+
docker pull nvidia/cuopt:latest-cuda13.0-py3.13
122
119
```
123
120
124
-
Note: The ``latest`` tag is the latest stable release of cuOpt. If you want to use a specific version, you can use the ``<version>-cuda12.9-py312`` or ``<version>-cuda13.0-py312`` tag. For example, to use cuOpt 25.5.0, you can use the ``25.5.0-cuda12.8-py312`` or ``25.5.0-cuda13.0-py312`` tag. Please refer to `cuOpt dockerhub page <https://hub.docker.com/r/nvidia/cuopt>`_ for the list of available tags.
121
+
Note: The ``latest`` tag is the latest stable release of cuOpt. If you want to use a specific version, you can use the ``<version>-cuda12.9-py3.13`` or ``<version>-cuda13.0-py3.13`` tag. For example, to use cuOpt 25.10.0, you can use the ``25.10.0-cuda12.9-py3.13`` or ``25.10.0-cuda13.0-py3.13`` tag. Please refer to `cuOpt dockerhub page <https://hub.docker.com/r/nvidia/cuopt/tags>`_ for the list of available tags.
125
122
126
123
More information about the cuOpt container can be found [here](https://docs.nvidia.com/cuopt/user-guide/latest/cuopt-server/quick-start.html#container-from-docker-hub).
@@ -63,19 +57,19 @@ NVIDIA cuOpt is also available as a container from Docker Hub:
63
57
64
58
.. code-block:: bash
65
59
66
-
docker pull nvidia/cuopt:latest-cuda12.9-py3.12
60
+
docker pull nvidia/cuopt:latest-cuda12.9-py3.13
67
61
68
62
.. note::
69
-
The ``latest`` tag is the latest stable release of cuOpt. If you want to use a specific version, you can use the ``<version>-cuda12.9-py3.12`` tag. For example, to use cuOpt 25.5.0, you can use the ``25.5.0-cuda12.9-py3.12`` tag. Please refer to `cuOpt dockerhub page <https://hub.docker.com/r/nvidia/cuopt>`_ for the list of available tags.
63
+
The ``latest`` tag is the latest stable release of cuOpt. If you want to use a specific version, you can use the ``<version>-cuda12.9-py3.13`` tag. For example, to use cuOpt 25.10.0, you can use the ``25.10.0-cuda12.9-py3.13`` tag. Please refer to `cuOpt dockerhub page <https://hub.docker.com/r/nvidia/cuopt/tags>`_ for the list of available tags.
70
64
71
65
.. note::
72
-
The nightly version of cuOpt is available as ``[VERSION]a-cuda12.9-py3.12`` tag. For example, to use cuOpt 25.8.0a, you can use the ``25.8.0a-cuda12.9-py3.12`` tag.
66
+
The nightly version of cuOpt is available as ``[VERSION]a-cuda12.9-py3.13`` tag. For example, to use cuOpt 25.10.0a, you can use the ``25.10.0a-cuda12.9-py3.13`` tag. Also the cuda version and python version might change in the future. Please refer to `cuOpt dockerhub page <https://hub.docker.com/r/nvidia/cuopt/tags>`_ for the list of available tags.
73
67
74
68
The container includes both the Python API and self-hosted server components. To run the container:
75
69
76
70
.. code-block:: bash
77
71
78
-
docker run --gpus all -it --rm nvidia/cuopt:latest-cuda12.9-py3.12 /bin/bash
72
+
docker run --gpus all -it --rm nvidia/cuopt:latest-cuda12.9-py3.13 /bin/bash
79
73
80
74
This will start an interactive session with cuOpt pre-installed and ready to use.
@@ -59,19 +57,19 @@ NVIDIA cuOpt is also available as a container from Docker Hub:
59
57
60
58
.. code-block:: bash
61
59
62
-
docker pull nvidia/cuopt:latest-cuda12.9-py3.12
60
+
docker pull nvidia/cuopt:latest-cuda12.9-py3.13
63
61
64
62
.. note::
65
-
The ``latest`` tag is the latest stable release of cuOpt. If you want to use a specific version, you can use the ``<version>-cuda12.9-py3.12`` tag. For example, to use cuOpt 25.5.0, you can use the ``25.5.0-cuda12.9-py3.12`` tag. Please refer to `cuOpt dockerhub page <https://hub.docker.com/r/nvidia/cuopt>`_ for the list of available tags.
63
+
The ``latest`` tag is the latest stable release of cuOpt. If you want to use a specific version, you can use the ``<version>-cuda12.9-py3.13`` tag. For example, to use cuOpt 25.10.0, you can use the ``25.10.0-cuda12.9-py3.13`` tag. Please refer to `cuOpt dockerhub page <https://hub.docker.com/r/nvidia/cuopt/tags>`_ for the list of available tags.
66
64
67
65
The container includes both the Python API and self-hosted server components. To run the container:
68
66
69
67
.. code-block:: bash
70
68
71
-
docker run --gpus all -it --rm -p 8000:8000 -e CUOPT_SERVER_PORT=8000 nvidia/cuopt:latest-cuda12.9-py3.12
69
+
docker run --gpus all -it --rm -p 8000:8000 -e CUOPT_SERVER_PORT=8000 nvidia/cuopt:latest-cuda12.9-py3.13
72
70
73
71
.. note::
74
-
The nightly version of cuOpt is available as ``[VERSION]a-cuda12.9-py3.12`` tag. For example, to use cuOpt 25.8.0a, you can use the ``25.8.0a-cuda12.9-py3.12`` tag.
72
+
The nightly version of cuOpt is available as ``[VERSION]a-cuda12.9-py3.13`` tag. For example, to use cuOpt 25.10.0a, you can use the ``25.10.0a-cuda12.9-py3.13`` tag. Also the cuda version and python version might change in the future. Please refer to `cuOpt dockerhub page <https://hub.docker.com/r/nvidia/cuopt/tags>`_ for the list of available tags.
75
73
76
74
.. note::
77
75
Make sure you have the NVIDIA Container Toolkit installed on your system to enable GPU support in containers. See the `installation guide <https://docs.nvidia.com/datacenter/cloud-native/container-toolkit/install-guide.html>`_ for details.
0 commit comments