File tree Expand file tree Collapse file tree 2 files changed +11
-5
lines changed
conda/recipes/librapidsmpf
cpp/benchmarks/streaming/ndsh Expand file tree Collapse file tree 2 files changed +11
-5
lines changed Original file line number Diff line number Diff 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 :
Original file line number Diff line number Diff line change @@ -32,9 +32,8 @@ target_compile_options(
3232 "$<$<COMPILE_LANGUAGE:CUDA>:${RAPIDSMPF_CUDA_FLAGS} >"
3333)
3434target_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
4039add_executable (q09 "q09.cpp" )
@@ -51,8 +50,14 @@ target_compile_options(
5150 "$<$<COMPILE_LANGUAGE:CUDA>:${RAPIDSMPF_CUDA_FLAGS} >"
5251)
5352target_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)
5762install (
5863 TARGETS q09
You can’t perform that action at this time.
0 commit comments