Skip to content
Open
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
1 change: 0 additions & 1 deletion conda/environments/all_cuda-129_arch-aarch64.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@ dependencies:
- clang==20.1.4
- click >=8.1
- cmake>=3.30.4,<4
- cuda-cudart-dev
- cuda-cupti-dev
- cuda-nvcc
- cuda-nvml-dev
Expand Down
1 change: 0 additions & 1 deletion conda/environments/all_cuda-129_arch-x86_64.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@ dependencies:
- clang==20.1.4
- click >=8.1
- cmake>=3.30.4,<4
- cuda-cudart-dev
- cuda-cupti-dev
- cuda-nvcc
- cuda-nvml-dev
Expand Down
1 change: 0 additions & 1 deletion conda/environments/all_cuda-130_arch-aarch64.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@ dependencies:
- clang==20.1.4
- click >=8.1
- cmake>=3.30.4,<4
- cuda-cudart-dev
- cuda-cupti-dev
- cuda-nvcc
- cuda-nvml-dev
Expand Down
1 change: 0 additions & 1 deletion conda/environments/all_cuda-130_arch-x86_64.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@ dependencies:
- clang==20.1.4
- click >=8.1
- cmake>=3.30.4,<4
- cuda-cudart-dev
- cuda-cupti-dev
- cuda-nvcc
- cuda-nvml-dev
Expand Down
7 changes: 0 additions & 7 deletions conda/recipes/librapidsmpf/recipe.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,6 @@ cache:
- ${{ stdlib("c") }}
host:
- cuda-version =${{ cuda_version }}
- cuda-cudart-dev
- cuda-cupti-dev
- cuda-nvml-dev
- librmm =${{ minor_version }}
Expand Down Expand Up @@ -109,15 +108,13 @@ outputs:
- ${{ stdlib("c") }}
host:
- cuda-version =${{ cuda_version }}
- cuda-cudart-dev
- cuda-cupti-dev
- cuda-nvml-dev
- libcudf =${{ minor_version }}
- openmpi >=5.0
- ucxx ${{ ucxx_version }}
run:
- ${{ pin_compatible("cuda-version", upper_bound="x", lower_bound="x") }}
- cuda-cudart
- cuda-cupti
- librmm =${{ minor_version }}
- libcudf =${{ minor_version }}
Expand All @@ -130,7 +127,6 @@ outputs:
- ${{ compiler("cxx") }}
- ${{ stdlib("c") }}
by_name:
- cuda-cudart
- cuda-cupti
- libcudf
- openmpi
Expand All @@ -155,7 +151,6 @@ outputs:
- cuda-nvml-dev
- ${{ stdlib("c") }}
host:
- cuda-cudart-dev
- cuda-cupti-dev
- cuda-nvml-dev
- cuda-version =${{ cuda_version }}
Expand All @@ -165,7 +160,6 @@ outputs:
- ${{ pin_subpackage("librapidsmpf", exact=True) }}
run:
- ${{ pin_compatible("cuda-version", upper_bound="x", lower_bound="x") }}
- cuda-cudart
- cuda-cupti
- librmm =${{ minor_version }}
- libcudf =${{ minor_version }}
Expand All @@ -178,7 +172,6 @@ outputs:
- ${{ compiler("cuda") }} =${{ cuda_version }}
- ${{ stdlib("c") }}
by_name:
- cuda-cudart
- cuda-cupti
- librmm
- libcudf
Expand Down
2 changes: 0 additions & 2 deletions conda/recipes/rapidsmpf/recipe.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,6 @@ requirements:
- libnuma
- ${{ stdlib("c") }}
host:
- cuda-cudart-dev
- cuda-cupti-dev
- cuda-version =${{ cuda_version }}
- cython >=3.0.3,<3.2.0
Expand Down Expand Up @@ -118,7 +117,6 @@ requirements:
- ${{ compiler("cuda") }}
- ${{ stdlib("c") }}
by_name:
- cuda-cudart
- cuda-cupti
- cuda-version
- openmpi
Expand Down
5 changes: 1 addition & 4 deletions cpp/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -49,8 +49,6 @@ option(BUILD_TESTS "Configure CMake to build tests" ON)
option(BUILD_BENCHMARKS "Configure CMake to build benchmarks" ON)
option(BUILD_EXAMPLES "Configure CMake to build examples" ON)
option(BUILD_SHARED_LIBS "Build RapidsMPF shared library" ON)
# cudart can be statically linked or dynamically linked. The python ecosystem wants dynamic linking
option(CUDA_STATIC_RUNTIME "Statically link the CUDA runtime" OFF)
option(RAPIDSMPF_CLANG_TIDY "Enable clang-tidy during compilation" OFF)
option(RAPIDSMPF_ASAN "Enable AddressSanitizer" OFF)
option(RAPIDSMPF_VERBOSE_INFO "Enable detail mode" OFF)
Expand All @@ -65,7 +63,6 @@ message(STATUS " BUILD_TESTS : ${BUILD_TESTS}")
message(STATUS " BUILD_BENCHMARKS : ${BUILD_BENCHMARKS}")
message(STATUS " BUILD_EXAMPLES : ${BUILD_EXAMPLES}")
message(STATUS " BUILD_SHARED_LIBS : ${BUILD_SHARED_LIBS}")
message(STATUS " CUDA_STATIC_RUNTIME : ${CUDA_STATIC_RUNTIME}")
message(STATUS " RAPIDSMPF_CLANG_TIDY : ${RAPIDSMPF_CLANG_TIDY}")
message(STATUS " RAPIDSMPF_ASAN : ${RAPIDSMPF_ASAN}")
message(STATUS " RAPIDSMPF_VERBOSE_INFO : ${RAPIDSMPF_VERBOSE_INFO}")
Expand Down Expand Up @@ -292,7 +289,7 @@ target_compile_definitions(
$<$<BOOL:${RAPIDSMPF_VERBOSE_INFO}>:RAPIDSMPF_VERBOSE_INFO>
)

rapids_cuda_set_runtime(rapidsmpf USE_STATIC ${CUDA_STATIC_RUNTIME})
rapids_cuda_set_runtime(rapidsmpf USE_STATIC ON)

add_library(rapidsmpf::rapidsmpf ALIAS rapidsmpf)

Expand Down
1 change: 0 additions & 1 deletion dependencies.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -257,7 +257,6 @@ dependencies:
common:
- output_types: [conda]
packages:
- cuda-cudart-dev
- cuda-cupti-dev
- cuda-nvml-dev
- cuda-nvrtc-dev
Expand Down
1 change: 0 additions & 1 deletion python/librapidsmpf/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,5 @@ endif()

unset(RAPIDSMPF_FOUND)

set(CUDA_STATIC_RUNTIME ON)
add_subdirectory(../../cpp librapidsmpf)
find_package(CUDAToolkit REQUIRED)