Skip to content

Commit

Permalink
Upgraded recipe and dev envs to NCCL 2.9.9 (#1636)
Browse files Browse the repository at this point in the history
Upgraded recipe and dev envs to NCCL 2.9.9.

The `cugraph` python conda recipe previously included NCCL, but (I think) it's a transient dependency since `libcugraph` actually needs it, so it was removed from the `cugraph` recipe.

cc @dantegd for consistency with cuML.

Note: the NCCL 2.9.9 upgrade was tested during benchmark runs, but the conda recipe changes have not been tested.

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

Approvers:
  - Jordan Jacobelli (https://github.com/Ethyling)
  - Chuck Hastings (https://github.com/ChuckHastings)
  - Seunghwa Kang (https://github.com/seunghwak)

URL: #1636
  • Loading branch information
rlratzel authored Jun 3, 2021
1 parent 12d3a61 commit 0d20a8b
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 6 deletions.
2 changes: 1 addition & 1 deletion conda/environments/cugraph_dev_cuda11.0.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ dependencies:
- distributed>=2.12.0
- dask-cuda=21.06*
- dask-cudf=21.06*
- nccl>=2.8.4
- nccl>=2.9.9
- ucx-py=0.20.*
- ucx-proc=*=gpu
- scipy
Expand Down
2 changes: 1 addition & 1 deletion conda/environments/cugraph_dev_cuda11.1.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ dependencies:
- distributed>=2.12.0
- dask-cuda=21.06*
- dask-cudf=21.06*
- nccl>=2.8.4
- nccl>=2.9.9
- ucx-py=0.20.*
- ucx-proc=*=gpu
- scipy
Expand Down
2 changes: 1 addition & 1 deletion conda/environments/cugraph_dev_cuda11.2.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ dependencies:
- distributed>=2.12.0
- dask-cuda=21.06*
- dask-cudf=21.06*
- nccl>=2.8.4
- nccl>=2.9.9
- ucx-py=0.20.*
- ucx-proc=*=gpu
- scipy
Expand Down
1 change: 0 additions & 1 deletion conda/recipes/cugraph/meta.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,6 @@ requirements:
- dask-cuda {{ minor_version }}
- dask>=2.12.0
- distributed>=2.12.0
- nccl>=2.8.4
- ucx-py 0.20
- ucx-proc=*=gpu

Expand Down
4 changes: 2 additions & 2 deletions conda/recipes/libcugraph/meta.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -35,15 +35,15 @@ requirements:
- cudatoolkit {{ cuda_version }}.*
- librmm {{ minor_version }}.*
- boost-cpp>=1.66
- nccl>=2.8.4
- nccl>=2.9.9
- ucx-proc=*=gpu
- gtest
- gmock
- faiss-proc=*=cuda
- conda-forge::libfaiss=1.7.0
run:
- {{ pin_compatible('cudatoolkit', max_pin='x.x') }}
- nccl>=2.8.4
- nccl>=2.9.9
- ucx-proc=*=gpu
- faiss-proc=*=cuda
- conda-forge::libfaiss=1.7.0
Expand Down

0 comments on commit 0d20a8b

Please sign in to comment.