Skip to content

Commit bebd8a7

Browse files
committed
Install the rapidsmpfndsh library as well
1 parent a29d011 commit bebd8a7

File tree

2 files changed

+11
-5
lines changed

2 files changed

+11
-5
lines changed

conda/recipes/librapidsmpf/recipe.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -85,6 +85,7 @@ outputs:
8585
ignore:
8686
# See https://github.com/rapidsai/build-planning/issues/160
8787
- lib/librapidsmpf.so
88+
- lib/librapidsmpfndsh.so
8889
string: cuda${{ cuda_major }}_${{ date_string }}_${{ head_rev }}
8990
requirements:
9091
build:

cpp/benchmarks/streaming/ndsh/CMakeLists.txt

Lines changed: 10 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -32,9 +32,8 @@ target_compile_options(
3232
"$<$<COMPILE_LANGUAGE:CUDA>:${RAPIDSMPF_CUDA_FLAGS}>"
3333
)
3434
target_link_libraries(
35-
rapidsmpfndsh
36-
PRIVATE rapidsmpf::rapidsmpf rmm::rmm cudf::cudf libcoro $<TARGET_NAME_IF_EXISTS:ucxx::ucxx>
37-
$<TARGET_NAME_IF_EXISTS:MPI::MPI_C> $<TARGET_NAME_IF_EXISTS:conda_env> maybe_asan
35+
rapidsmpfndsh PRIVATE rapidsmpf::rapidsmpf $<TARGET_NAME_IF_EXISTS:MPI::MPI_C>
36+
$<TARGET_NAME_IF_EXISTS:conda_env> maybe_asan
3837
)
3938

4039
add_executable(q09 "q09.cpp")
@@ -51,8 +50,14 @@ target_compile_options(
5150
"$<$<COMPILE_LANGUAGE:CUDA>:${RAPIDSMPF_CUDA_FLAGS}>"
5251
)
5352
target_link_libraries(
54-
q09 PRIVATE rapidsmpfndsh rapidsmpf::rapidsmpf ucxx::ucxx ucx::ucp
55-
$<TARGET_NAME_IF_EXISTS:MPI::MPI_C> $<TARGET_NAME_IF_EXISTS:conda_env> maybe_asan
53+
q09 PRIVATE rapidsmpfndsh rapidsmpf::rapidsmpf $<TARGET_NAME_IF_EXISTS:MPI::MPI_C>
54+
$<TARGET_NAME_IF_EXISTS:conda_env> maybe_asan
55+
)
56+
install(
57+
TARGETS rapidsmpfndsh
58+
COMPONENT benchmarking
59+
DESTINATION ${lib_dir}
60+
EXCLUDE_FROM_ALL
5661
)
5762
install(
5863
TARGETS q09

0 commit comments

Comments
 (0)