Skip to content

Commit 1d4ca7f

Browse files
bdicemeta-codesync[bot]
authored andcommitted
build(cuda): Upgrade to CUDA 12.9 (#16131)
Summary: This PR upgrades Velox's adaptors images to CUDA 12.9. This is now a [build-time requirement for cuDF](rapidsai/cudf#21186). cuDF is still compatible with CUDA 12.2+ at runtime, only the build-time requirement has increased. Pull Request resolved: #16131 Reviewed By: kagamiori Differential Revision: D91524166 Pulled By: Yuhta fbshipit-source-id: 2ecf109c843d9bd559f2626d5b371a9cd657bc29
1 parent ea79257 commit 1d4ca7f

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

.github/workflows/breeze.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ jobs:
8888
if: ${{ github.repository == 'facebookincubator/velox' }}
8989
name: Ubuntu GPU debug
9090
env:
91-
CUDA_VERSION: '12.8'
91+
CUDA_VERSION: '12.9'
9292
defaults:
9393
run:
9494
shell: bash

.github/workflows/linux-build-base.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ jobs:
8989
CCACHE_DIR: ${{ github.workspace }}/ccache
9090
VELOX_DEPENDENCY_SOURCE: SYSTEM
9191
cudf_SOURCE: BUNDLED
92-
CUDA_VERSION: '12.8'
92+
CUDA_VERSION: '12.9'
9393
faiss_SOURCE: BUNDLED
9494
USE_CLANG: "${{ inputs.use-clang && 'true' || 'false' }}"
9595
steps:

scripts/setup-centos-adapters.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,14 +23,14 @@
2323
# * INSTALL_PREREQUISITES="N": Skip installation of packages for build.
2424
# * PROMPT_ALWAYS_RESPOND="n": Automatically respond to interactive prompts.
2525
# Use "n" to never wipe directories.
26-
# * VELOX_CUDA_VERSION="12.8": Which version of CUDA to install, will pick up
26+
# * VELOX_CUDA_VERSION="12.9": Which version of CUDA to install, will pick up
2727
# CUDA_VERSION from the env
2828
# * VELOX_UCX_VERSION="1.19.0": Which version of ucx to install, will pick up
2929
# UCX_VERSION from the env
3030

3131
set -efx -o pipefail
3232

33-
VELOX_CUDA_VERSION=${CUDA_VERSION:-"12.8"}
33+
VELOX_CUDA_VERSION=${CUDA_VERSION:-"12.9"}
3434
VELOX_UCX_VERSION=${UCX_VERSION:-"1.19.0"}
3535
SCRIPT_DIR=$(dirname "${BASH_SOURCE[0]}")
3636
source "$SCRIPT_DIR"/setup-centos9.sh

0 commit comments

Comments
 (0)