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

add libcugraph Python builds #435

Merged
merged 9 commits into from
Jan 18, 2025
2 changes: 1 addition & 1 deletion features/src/rapids-build-utils/devcontainer-feature.json
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.5",
"version": "25.2.6",
"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 @@ -190,7 +190,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}
bdice marked this conversation as resolved.
Show resolved Hide resolved
cpp:
- name: cugraph
sub_dir: cpp
Expand All @@ -202,14 +203,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