Skip to content
Merged
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
2 changes: 1 addition & 1 deletion examples/UDF-Examples/RAPIDS-accelerated-UDFs/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ RUN dnf --enablerepo=powertools install -y \
&& alternatives --set python /usr/bin/python3

# 3.22.3: CUDA architecture 'native' support + flexible CMAKE_<LANG>_*_LAUNCHER for ccache
Comment thread
NvTimLiu marked this conversation as resolved.
ARG CMAKE_VERSION=3.30.4
ARG CMAKE_VERSION=4.0.3
Comment thread
NvTimLiu marked this conversation as resolved.
# default x86_64 from x86 build, aarch64 cmake for arm build
ARG CMAKE_ARCH=x86_64
RUN cd /usr/local && wget --quiet https://github.com/Kitware/CMake/releases/download/v${CMAKE_VERSION}/cmake-${CMAKE_VERSION}-linux-${CMAKE_ARCH}.tar.gz && \
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
#=============================================================================

# Keep the same with https://github.com/rapidsai/rapids-cmake/blob/main/RAPIDS.cmake
cmake_minimum_required(VERSION 3.30.4 FATAL_ERROR)
cmake_minimum_required(VERSION 4.0 FATAL_ERROR)

# set to the rapids-cmake-branch
set(rapids-cmake-branch "main")
Expand Down