Skip to content

Commit 7fd3f28

Browse files
committed
Merge branch 'upstream/branch-25.10' into chore/remove_pytest_pin
2 parents 2ce971c + d0b20bf commit 7fd3f28

18 files changed

+602
-14
lines changed

RAPIDS_BRANCH

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
branch-25.10

cmake/RAPIDS.cmake

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,9 +18,9 @@
1818
cmake_minimum_required(VERSION 3.30.4 FATAL_ERROR)
1919

2020
# Allow users to control which version is used
21-
if(NOT rapids-cmake-version OR NOT rapids-cmake-version MATCHES [[^([0-9][0-9])\.([0-9][0-9])$]])
21+
if(NOT rapids-cmake-branch OR NOT rapids-cmake-version)
2222
message(
23-
FATAL_ERROR "The CMake variable rapids-cmake-version must be defined in the format MAJOR.MINOR."
23+
FATAL_ERROR "The CMake variable `rapids-cmake-branch` or `rapids-cmake-version` must be defined"
2424
)
2525
endif()
2626

@@ -33,7 +33,7 @@ endif()
3333
# Allow users to control which branch is fetched
3434
if(NOT rapids-cmake-branch)
3535
# Define a default branch if the user doesn't set one
36-
set(rapids-cmake-branch "branch-${rapids-cmake-version}")
36+
set(rapids-cmake-branch "release/${rapids-cmake-version}")
3737
endif()
3838

3939
# Allow users to control the exact URL passed to FetchContent

cmake/rapids_config.cmake

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,5 +25,15 @@ else()
2525
"Could not determine RAPIDS version. Contents of VERSION file:\n${_rapids_version_formatted}")
2626
endif()
2727

28+
# Use STRINGS to trim whitespace/newlines
29+
file(STRINGS "${CMAKE_CURRENT_LIST_DIR}/../RAPIDS_BRANCH" _rapids_branch)
30+
if(NOT _rapids_branch)
31+
message(
32+
FATAL_ERROR
33+
"Could not determine branch name to use for checking out rapids-cmake. The file \"${CMAKE_CURRENT_LIST_DIR}/../RAPIDS_BRANCH\" is missing."
34+
)
35+
endif()
36+
2837
set(rapids-cmake-version "${RAPIDS_VERSION_MAJOR_MINOR}")
38+
set(rapids-cmake-branch "${_rapids_branch}")
2939
include("${CMAKE_CURRENT_LIST_DIR}/RAPIDS.cmake")

conda/environments/all_cuda-129_arch-aarch64.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ dependencies:
2222
- dask-cudf==25.10.*,>=0.0.0a0
2323
- dask-ml
2424
- doxygen=1.9.1
25-
- gcc_linux-aarch64=13.*
25+
- gcc_linux-aarch64=14.*
2626
- graphviz
2727
- hdbscan>=0.8.39,<0.8.40
2828
- hypothesis>=6.0,<7

conda/environments/all_cuda-129_arch-x86_64.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ dependencies:
2222
- dask-cudf==25.10.*,>=0.0.0a0
2323
- dask-ml
2424
- doxygen=1.9.1
25-
- gcc_linux-64=13.*
25+
- gcc_linux-64=14.*
2626
- graphviz
2727
- hdbscan>=0.8.39,<0.8.40
2828
- hypothesis>=6.0,<7

conda/environments/clang_tidy_cuda-129_arch-x86_64.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ dependencies:
1414
- cuda-profiler-api
1515
- cuda-version=12.9
1616
- cxx-compiler
17-
- gcc_linux-64=13.*
17+
- gcc_linux-64=14.*
1818
- libcublas-dev
1919
- libcufft-dev
2020
- libcumlprims==25.10.*,>=0.0.0a0

conda/environments/cpp_all_cuda-129_arch-x86_64.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ dependencies:
1212
- cuda-profiler-api
1313
- cuda-version=12.9
1414
- cxx-compiler
15-
- gcc_linux-64=13.*
15+
- gcc_linux-64=14.*
1616
- libcublas-dev
1717
- libcufft-dev
1818
- libcumlprims==25.10.*,>=0.0.0a0

conda/recipes/cuml/conda_build_config.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
c_compiler_version:
2-
- 13
2+
- 14
33

44
cxx_compiler_version:
5-
- 13
5+
- 14
66

77
cuda_compiler:
88
- cuda-nvcc

conda/recipes/libcuml/conda_build_config.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
c_compiler_version:
2-
- 13
2+
- 14
33

44
cxx_compiler_version:
5-
- 13
5+
- 14
66

77
cuda_compiler:
88
- cuda-nvcc

cpp/CMakeLists.txt

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -522,7 +522,8 @@ if(BUILD_CUML_CPP_LIBRARY)
522522
if(all_algo OR spectralclustering_algo)
523523
target_sources(${CUML_CPP_TARGET}
524524
PRIVATE
525-
src/spectral/spectral.cu)
525+
src/spectral/spectral.cu
526+
src/spectral/spectral_embedding.cu)
526527
endif()
527528

528529
if(all_algo OR svm_algo)

0 commit comments

Comments
 (0)