Skip to content

Commit 92e9a03

Browse files
committed
add support for driver version 590.48.01
Signed-off-by: Tariq Ibrahim <[email protected]>
1 parent f9750fb commit 92e9a03

File tree

6 files changed

+30
-13
lines changed

6 files changed

+30
-13
lines changed

.common-ci.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ default:
1919
command: ["--experimental"]
2020

2121
variables:
22-
DRIVER_VERSIONS: 535.274.02 570.195.03 580.105.08
22+
DRIVER_VERSIONS: 535.274.02 570.195.03 580.105.08 590.48.01
2323
BUILD_MULTI_ARCH_IMAGES: "true"
2424

2525
stages:
@@ -81,13 +81,13 @@ trigger-pipeline:
8181
.driver-versions:
8282
parallel:
8383
matrix:
84-
- DRIVER_VERSION: [535.274.02, 570.195.03, 580.105.08]
84+
- DRIVER_VERSION: [535.274.02, 570.195.03, 580.105.08, 590.48.01]
8585

8686
# Define the driver versions for jobs that can be run in parallel
8787
.driver-versions-ubuntu24.04:
8888
parallel:
8989
matrix:
90-
- DRIVER_VERSION: [570.195.03, 580.105.08]
90+
- DRIVER_VERSION: [570.195.03, 580.105.08, 590.48.01]
9191

9292
# Define the matrix of precompiled jobs that can be run in parallel for ubuntu22.04
9393
.driver-versions-precompiled-ubuntu22.04:

.github/workflows/image.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,7 @@ jobs:
3131
- 535.274.02
3232
- 570.195.03
3333
- 580.105.08
34+
- 590.48.01
3435
dist:
3536
- ubuntu22.04
3637
- ubuntu24.04

.nvidia-ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ variables:
3434
# Define the public staging registry
3535
STAGING_REGISTRY: ghcr.io/nvidia
3636
STAGING_VERSION: "${CI_COMMIT_SHORT_SHA}"
37-
PUBLISH_VERSIONS: 535.274.02 570.195.03 580.105.08
37+
PUBLISH_VERSIONS: 590.48.01
3838

3939
.image-pull-rules:
4040
# We delay the job start to allow the public pipeline to generate the required images.

ubuntu22.04/install.sh

Lines changed: 12 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -53,15 +53,19 @@ repo_setup () {
5353
}
5454

5555
fabricmanager_install() {
56-
if [ "$DRIVER_BRANCH" -ge "580" ]; then
56+
if [ "$DRIVER_BRANCH" -ge "590" ]; then
57+
apt-get install -y --no-install-recommends nvidia-fabricmanager=${DRIVER_VERSION}-0ubuntu1
58+
elif [ "$DRIVER_BRANCH" -ge "580" ]; then
5759
apt-get install -y --no-install-recommends nvidia-fabricmanager=${DRIVER_VERSION}-1
5860
else
5961
apt-get install -y --no-install-recommends nvidia-fabricmanager-${DRIVER_BRANCH}=${DRIVER_VERSION}-1
6062
fi
6163
}
6264

6365
nscq_install() {
64-
if [ "$DRIVER_BRANCH" -ge "580" ]; then
66+
if [ "$DRIVER_BRANCH" -ge "590" ]; then
67+
apt-get install -y --no-install-recommends libnvidia-nscq=${DRIVER_VERSION}-0ubuntu1
68+
elif [ "$DRIVER_BRANCH" -ge "580" ]; then
6569
apt-get install -y --no-install-recommends libnvidia-nscq=${DRIVER_VERSION}-1
6670
else
6771
apt-get install -y --no-install-recommends libnvidia-nscq-${DRIVER_BRANCH}=${DRIVER_VERSION}-1
@@ -71,7 +75,9 @@ nscq_install() {
7175
# libnvsdm packages are not available for arm64
7276
nvsdm_install() {
7377
if [ "$TARGETARCH" = "amd64" ]; then
74-
if [ "$DRIVER_BRANCH" -ge "580" ]; then
78+
if [ "$DRIVER_BRANCH" -ge "590" ]; then
79+
apt-get install -y --no-install-recommends libnvsdm=${DRIVER_VERSION}-0ubuntu1
80+
elif [ "$DRIVER_BRANCH" -ge "580" ]; then
7581
apt-get install -y --no-install-recommends libnvsdm=${DRIVER_VERSION}-1
7682
elif [ "$DRIVER_BRANCH" -ge "570" ]; then
7783
apt-get install -y --no-install-recommends libnvsdm-${DRIVER_BRANCH}=${DRIVER_VERSION}-1
@@ -86,7 +92,9 @@ nvlink5_pkgs_install() {
8692
}
8793

8894
imex_install() {
89-
if [ "$DRIVER_BRANCH" -ge "580" ]; then
95+
if [ "$DRIVER_BRANCH" -ge "590" ]; then
96+
apt-get install -y --no-install-recommends nvidia-imex=${DRIVER_VERSION}-0ubuntu1
97+
elif [ "$DRIVER_BRANCH" -ge "580" ]; then
9098
apt-get install -y --no-install-recommends nvidia-imex=${DRIVER_VERSION}-1
9199
elif [ "$DRIVER_BRANCH" -ge "550" ]; then
92100
apt-get install -y --no-install-recommends nvidia-imex-${DRIVER_BRANCH}=${DRIVER_VERSION}-1;

ubuntu24.04/install.sh

Lines changed: 12 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -45,15 +45,19 @@ setup_cuda_repo() {
4545
}
4646

4747
fabricmanager_install() {
48-
if [ "$DRIVER_BRANCH" -ge "580" ]; then
48+
if [ "$DRIVER_BRANCH" -ge "590" ]; then
49+
apt-get install -y --no-install-recommends nvidia-fabricmanager=${DRIVER_VERSION}-0ubuntu1
50+
elif [ "$DRIVER_BRANCH" -ge "580" ]; then
4951
apt-get install -y --no-install-recommends nvidia-fabricmanager=${DRIVER_VERSION}-1
5052
else
5153
apt-get install -y --no-install-recommends nvidia-fabricmanager-${DRIVER_BRANCH}=${DRIVER_VERSION}-1
5254
fi
5355
}
5456

5557
nscq_install() {
56-
if [ "$DRIVER_BRANCH" -ge "580" ]; then
58+
if [ "$DRIVER_BRANCH" -ge "590" ]; then
59+
apt-get install -y --no-install-recommends libnvidia-nscq=${DRIVER_VERSION}-0ubuntu1
60+
elif [ "$DRIVER_BRANCH" -ge "580" ]; then
5761
apt-get install -y --no-install-recommends libnvidia-nscq=${DRIVER_VERSION}-1
5862
else
5963
apt-get install -y --no-install-recommends libnvidia-nscq-${DRIVER_BRANCH}=${DRIVER_VERSION}-1
@@ -63,7 +67,9 @@ nscq_install() {
6367
# libnvsdm packages are not available for arm64
6468
nvsdm_install() {
6569
if [ "$TARGETARCH" = "amd64" ]; then
66-
if [ "$DRIVER_BRANCH" -ge "580" ]; then
70+
if [ "$DRIVER_BRANCH" -ge "590" ]; then
71+
apt-get install -y --no-install-recommends libnvsdm=${DRIVER_VERSION}-0ubuntu1
72+
elif [ "$DRIVER_BRANCH" -ge "580" ]; then
6773
apt-get install -y --no-install-recommends libnvsdm=${DRIVER_VERSION}-1
6874
elif [ "$DRIVER_BRANCH" -ge "570" ]; then
6975
apt-get install -y --no-install-recommends libnvsdm-${DRIVER_BRANCH}=${DRIVER_VERSION}-1
@@ -78,7 +84,9 @@ nvlink5_pkgs_install() {
7884
}
7985

8086
imex_install() {
81-
if [ "$DRIVER_BRANCH" -ge "580" ]; then
87+
if [ "$DRIVER_BRANCH" -ge "590" ]; then
88+
apt-get install -y --no-install-recommends nvidia-imex=${DRIVER_VERSION}-0ubuntu1
89+
elif [ "$DRIVER_BRANCH" -ge "580" ]; then
8290
apt-get install -y --no-install-recommends nvidia-imex=${DRIVER_VERSION}-1
8391
elif [ "$DRIVER_BRANCH" -ge "550" ]; then
8492
apt-get install -y --no-install-recommends nvidia-imex-${DRIVER_BRANCH}=${DRIVER_VERSION}-1;

versions.mk

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,6 @@
1313
# limitations under the License.
1414

1515
# DRIVER_VERSIONS contains latest version in all active datacenter branches
16-
DRIVER_VERSIONS ?= 535.274.02 570.195.03 580.105.08
16+
DRIVER_VERSIONS ?= 535.274.02 570.195.03 580.105.08 590.48.01
1717

1818
GOLANG_VERSION := 1.25.5

0 commit comments

Comments
 (0)