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

WIP: add libraft, libcugraph, libcuml Python builds #435

Draft
wants to merge 1 commit into
base: branch-25.02
Choose a base branch
from
Draft
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.4",
"version": "25.2.5",
"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 @@ -99,7 +99,8 @@ repos:

- name: raft
path: raft
git: {<<: *git_defaults, repo: raft}
# TODO(jameslamb): revert this before merging
git: {<<: *git_defaults, repo: raft, upstream: jameslamb, tag: libraft-wheels}
cpp:
- name: raft
sub_dir: cpp
Expand All @@ -108,14 +109,18 @@ repos:
max_device_obj_memory_usage: 3Gi
args: {cmake: -DRAFT_COMPILE_LIBRARY=ON}
python:
- name: libraft
sub_dir: python/libraft
depends: [raft]
args: {install: *rapids_build_backend_args}
- name: pylibraft
sub_dir: python/pylibraft
depends: [raft]
args: {cmake: -DFIND_RAFT_CPP=ON, install: *rapids_build_backend_args}
args: {install: *rapids_build_backend_args}
- name: raft-dask
sub_dir: python/raft-dask
depends: [ucxx, raft]
args: {cmake: -DFIND_RAFT_CPP=ON, install: *rapids_build_backend_args}
args: {install: *rapids_build_backend_args}

- name: cuvs
path: cuvs
Expand Down Expand Up @@ -143,18 +148,23 @@ repos:

- name: cuml
path: cuml
git: {<<: *git_defaults, repo: cuml}
# TODO(jameslamb): revert this before merging
git: {<<: *git_defaults, repo: cuml, upstream: jameslamb, tag: libcuml-wheels}
cpp:
- name: cuml
sub_dir: cpp
depends: [rmm, raft, cumlprims_mg, cuvs]
parallelism:
max_device_obj_memory_usage: 3Gi
python:
- name: libcuml
sub_dir: python/libcuml
depends: [cuml]
args: {install: *rapids_build_backend_args}
- name: cuml
sub_dir: python/cuml
depends: [cuml]
args: {cmake: -DFIND_CUML_CPP=ON, install: *rapids_build_backend_args}
args: {install: *rapids_build_backend_args}

- name: cugraph-ops
path: cugraph-ops
Expand Down Expand Up @@ -186,7 +196,8 @@ repos:

- name: cugraph
path: cugraph
git: {<<: *git_defaults, repo: cugraph}
# TODO(jameslamb): revert this before merging
git: {<<: *git_defaults, repo: cugraph, upstream: jameslamb, tag: libcugraph-wheel}
cpp:
- name: cugraph
sub_dir: cpp
Expand All @@ -198,14 +209,18 @@ repos:
depends: [cudf, cugraph]
args: {install: *rapids_build_backend_args}
python:
- name: libcugraph
sub_dir: python/libcugraph
depends: [cugraph]
args: {install: *rapids_build_backend_args}
- name: pylibcugraph
sub_dir: python/pylibcugraph
depends: [cugraph]
args: {cmake: -DFIND_CUGRAPH_CPP=ON, install: *rapids_build_backend_args}
args: {install: *rapids_build_backend_args}
- name: cugraph
sub_dir: python/cugraph
depends: [cugraph]
args: {cmake: -DFIND_CUGRAPH_CPP=ON, install: *rapids_build_backend_args}
args: {install: *rapids_build_backend_args}
- name: cugraph-service-client
sub_dir: python/cugraph-service/client
args: {install: *rapids_build_backend_args}
Expand Down
Loading