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

Open
wants to merge 5 commits into
base: branch-25.02
Choose a base branch
from
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
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "NVIDIA RAPIDS devcontainer build utilities",
"id": "rapids-build-utils",
"version": "25.2.0",
"version": "25.2.1",
"description": "A feature to install the RAPIDS devcontainer build utilities",
"containerEnv": {
"BASH_ENV": "/etc/bash.bash_env"
Expand Down
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 @@ -208,7 +205,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