diff --git a/.github/workflows/linux-build-base.yml b/.github/workflows/linux-build-base.yml index 8e486f885e9a..7fde22416912 100644 --- a/.github/workflows/linux-build-base.yml +++ b/.github/workflows/linux-build-base.yml @@ -37,7 +37,7 @@ jobs: CCACHE_DIR: ${{ github.workspace }}/ccache VELOX_DEPENDENCY_SOURCE: SYSTEM cudf_SOURCE: BUNDLED - CUDA_VERSION: '12.8' + CUDA_VERSION: '13.0' faiss_SOURCE: BUNDLED USE_CLANG: "${{ inputs.use-clang && 'true' || 'false' }}" steps: @@ -86,7 +86,7 @@ jobs: - name: Make Release Build env: MAKEFLAGS: NUM_THREADS=8 MAX_HIGH_MEM_JOBS=4 MAX_LINK_JOBS=4 - CUDA_ARCHITECTURES: 70 + CUDA_ARCHITECTURES: 75 CUDA_COMPILER: /usr/local/cuda-${CUDA_VERSION}/bin/nvcc # Set compiler to GCC 14 CUDA_FLAGS: -ccbin /opt/rh/gcc-toolset-14/root/usr/bin diff --git a/scripts/setup-centos-adapters.sh b/scripts/setup-centos-adapters.sh index 206562dcc124..ca71ab944727 100755 --- a/scripts/setup-centos-adapters.sh +++ b/scripts/setup-centos-adapters.sh @@ -23,12 +23,12 @@ # * INSTALL_PREREQUISITES="N": Skip installation of packages for build. # * PROMPT_ALWAYS_RESPOND="n": Automatically respond to interactive prompts. # Use "n" to never wipe directories. -# * VELOX_CUDA_VERSION="12.8": Which version of CUDA to install, will pick up +# * VELOX_CUDA_VERSION="13.0": Which version of CUDA to install, will pick up # CUDA_VERSION from the env set -efx -o pipefail -VELOX_CUDA_VERSION=${CUDA_VERSION:-"12.8"} +VELOX_CUDA_VERSION=${CUDA_VERSION:-"13.0"} SCRIPT_DIR=$(dirname "${BASH_SOURCE[0]}") source "$SCRIPT_DIR"/setup-centos9.sh