Skip to content
Merged
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
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,14 @@ FROM quay.io/centos/centos:stream9
# from https://github.com/facebookincubator/velox/pull/14366
ARG ARM_BUILD_TARGET

# This defaults to 12.9 but can be overridden with a build arg
ARG CUDA_VERSION

ENV PROMPT_ALWAYS_RESPOND=y
ENV CC=/opt/rh/gcc-toolset-12/root/bin/gcc
ENV CXX=/opt/rh/gcc-toolset-12/root/bin/g++
ENV ARM_BUILD_TARGET=${ARM_BUILD_TARGET}
ENV CUDA_VERSION=${CUDA_VERSION:-12.9}
Comment thread
zoltan marked this conversation as resolved.

RUN mkdir -p /scripts /velox/scripts
COPY scripts /scripts
Expand All @@ -35,7 +39,7 @@ RUN bash -c "mkdir build && \
source ../velox/scripts/setup-centos-adapters.sh && \
install_adapters && \
install_clang15 && \
install_cuda 12.8) && \
install_cuda ${CUDA_VERSION}) && \
Copy link
Copy Markdown
Contributor

@karthikeyann karthikeyann Feb 9, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@majetideepak @zoltan can we add install_ucx also by default here? It will help us avoid rebuild dependency image for ibm-research-preview branch again?

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Copy link
Copy Markdown
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Let's do this in a separate PR.

Copy link
Copy Markdown
Contributor

@karthikeyann karthikeyann Feb 10, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Created a separate PR #27118

rm -rf build"

# put CUDA binaries on the PATH
Expand Down
Loading