Skip to content

Commit

Permalink
Adds nx-cugraph to the rapids meta-package (#701)
Browse files Browse the repository at this point in the history
* Adds `nx-cugraph` to the `rapids` meta-package - unlike Accelerated Pandas, which is provided with `cudf`, Accelerated NetworkX is not provided with `cugraph` and must be installed separately.
* `nx-cugraph` has a dependency on NetworkX and ensures a compatible version is installed.  Because of this, the explicit install of `networkx` is removed from the `rapids` meta-package in favor of using the `networkx` version installed via `nx-cugraph`.

Authors:
  - Rick Ratzel (https://github.com/rlratzel)

Approvers:
  - Ray Douglass (https://github.com/raydouglass)

URL: #701
  • Loading branch information
rlratzel authored Feb 21, 2024
1 parent 0ce8a21 commit 7437cb3
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 3 deletions.
2 changes: 1 addition & 1 deletion conda/recipes/rapids/meta.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -31,13 +31,13 @@ requirements:
- {{ pin_compatible('cuda-version', max_pin='x', min_pin='x') }}
- cupy {{ cupy_version }}
- nccl {{ nccl_version }}
- networkx {{ networkx_version }}
- numba {{ numba_version }}
- numpy {{ numpy_version }}
- nvtx {{ nvtx_version }}
- python
- cudf ={{ major_minor_version }}.*
- cugraph ={{ major_minor_version }}.*
- nx-cugraph ={{ major_minor_version }}.*
- cuml ={{ major_minor_version }}.*
- cucim ={{ major_minor_version }}.*
- cuspatial ={{ major_minor_version }}.*
Expand Down
2 changes: 0 additions & 2 deletions conda/recipes/versions.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,6 @@ cupy_version:
- '>=12.0.0'
nccl_version:
- '>=2.9.9,<3.0a0'
networkx_version:
- '>=2.5.1'
numba_version:
- '>=0.57'
numpy_version:
Expand Down

0 comments on commit 7437cb3

Please sign in to comment.