Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Various fixes to the manifest #422

Merged
merged 11 commits into from
Dec 2, 2024
Original file line number Diff line number Diff line change
Expand Up @@ -33,10 +33,7 @@ repos:
- name: ucxx
sub_dir: cpp
depends: [rmm]
args:
cmake: |
-DUCXX_ENABLE_PYTHON=ON
-DUCXX_ENABLE_RMM=ON
args: {cmake: -DUCXX_ENABLE_RMM=ON}
python:
- name: ucxx
sub_dir: python/ucxx
Expand Down Expand Up @@ -69,7 +66,7 @@ repos:
cpp:
- name: cudf
sub_dir: cpp
depends: [kvikio]
depends: [rmm, kvikio]
- name: cudf_kafka
sub_dir: cpp/libcudf_kafka
depends: [cudf]
Expand Down Expand Up @@ -126,7 +123,7 @@ repos:
cpp:
- name: cuvs
sub_dir: cpp
depends: [raft]
depends: [rmm, raft]
parallelism:
max_device_obj_memory_usage: 3Gi
args: {cmake: -DBUILD_C_LIBRARY=ON}
Expand All @@ -142,15 +139,15 @@ repos:
cpp:
- name: cumlprims_mg
sub_dir: cpp
depends: [raft]
depends: [rmm, raft]

- name: cuml
path: cuml
git: {<<: *git_defaults, repo: cuml}
cpp:
- name: cuml
sub_dir: cpp
depends: [cumlprims_mg]
depends: [rmm, raft, cumlprims_mg, cuvs]
parallelism:
max_device_obj_memory_usage: 3Gi
python:
Expand Down Expand Up @@ -193,7 +190,7 @@ repos:
cpp:
- name: cugraph
sub_dir: cpp
depends: [cugraph-ops]
depends: [rmm, raft]
parallelism:
max_device_obj_memory_usage: 6Gi
- name: cugraph_etl
Expand Down
Loading