Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/linux-build-base.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions scripts/setup-centos-adapters.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
Loading