Skip to content

Commit

Permalink
Adding dev conda environment files. (#397)
Browse files Browse the repository at this point in the history
With the recent update of the default clang-format version breaking the style checks in a few projects, I realized other projects are explicitly pinning this version while RAFT is not. Now that RAFT is beginning to act more independently of other projects, it's time for it to provide its own dev conda environment files. This will also get the directories in place for the conda recipes, which will be coming in the next couple versions.

Authors:
  - Corey J. Nolet (https://github.com/cjnolet)

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

URL: #397
  • Loading branch information
cjnolet authored Nov 22, 2021
1 parent ffb3799 commit a3e8181
Show file tree
Hide file tree
Showing 4 changed files with 132 additions and 0 deletions.
33 changes: 33 additions & 0 deletions conda/environments/raft_dev_cuda11.0.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
name: raft_dev
channels:
- rapidsai
- nvidia
- rapidsai-nightly
- conda-forge
dependencies:
- cudatoolkit=11.0
- clang=11.1.0
- clang-tools=11.1.0
- rapids-build-env=22.02.*
- rapids-notebook-env=22.02.*
- rapids-doc-env=22.02.*
- rmm=22.02.*
- dask-cuda=22.02.*
- ucx-py=0.23
- ucx-proc=*=gpu
- doxygen>=1.8.20
- libfaiss>=1.7.0
- faiss-proc=*=cuda
- pip
- pip:
- sphinx_markdown_tables
- git+https://github.com/dask/[email protected]
- git+https://github.com/dask/[email protected]

# rapids-build-env, notebook-env and doc-env are defined in
# https://docs.rapids.ai/maintainers/depmgmt/

# To install different versions of packages contained in those meta packages,
# it is recommended to remove those meta packages (without removing the actual
# packages contained in the environment) first with:
# conda remove --force rapids-build-env rapids-notebook-env rapids-doc-env
33 changes: 33 additions & 0 deletions conda/environments/raft_dev_cuda11.2.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
name: raft_dev
channels:
- rapidsai
- nvidia
- rapidsai-nightly
- conda-forge
dependencies:
- cudatoolkit=11.2
- clang=11.1.0
- clang-tools=11.1.0
- rapids-build-env=22.02.*
- rapids-notebook-env=22.02.*
- rapids-doc-env=22.02.*
- rmm=22.02.*
- dask-cuda=22.02.*
- ucx-py=0.23
- ucx-proc=*=gpu
- doxygen>=1.8.20
- libfaiss>=1.7.0
- faiss-proc=*=cuda
- pip
- pip:
- sphinx_markdown_tables
- git+https://github.com/dask/[email protected]
- git+https://github.com/dask/[email protected]

# rapids-build-env, notebook-env and doc-env are defined in
# https://docs.rapids.ai/maintainers/depmgmt/

# To install different versions of packages contained in those meta packages,
# it is recommended to remove those meta packages (without removing the actual
# packages contained in the environment) first with:
# conda remove --force rapids-build-env rapids-notebook-env rapids-doc-env
33 changes: 33 additions & 0 deletions conda/environments/raft_dev_cuda11.4.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
name: raft_dev
channels:
- rapidsai
- nvidia
- rapidsai-nightly
- conda-forge
dependencies:
- cudatoolkit=11.4
- clang=11.1.0
- clang-tools=11.1.0
- rapids-build-env=22.02.*
- rapids-notebook-env=22.02.*
- rapids-doc-env=22.02.*
- rmm=22.02.*
- dask-cuda=22.02.*
- ucx-py=0.23
- ucx-proc=*=gpu
- doxygen>=1.8.20
- libfaiss>=1.7.0
- faiss-proc=*=cuda
- pip
- pip:
- sphinx_markdown_tables
- git+https://github.com/dask/[email protected]
- git+https://github.com/dask/[email protected]

# rapids-build-env, notebook-env and doc-env are defined in
# https://docs.rapids.ai/maintainers/depmgmt/

# To install different versions of packages contained in those meta packages,
# it is recommended to remove those meta packages (without removing the actual
# packages contained in the environment) first with:
# conda remove --force rapids-build-env rapids-notebook-env rapids-doc-env
33 changes: 33 additions & 0 deletions conda/environments/raft_dev_cuda11.5.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
name: raft_dev
channels:
- rapidsai
- nvidia
- rapidsai-nightly
- conda-forge
dependencies:
- cudatoolkit=11.5
- clang=11.1.0
- clang-tools=11.1.0
- rapids-build-env=22.02.*
- rapids-notebook-env=22.02.*
- rapids-doc-env=22.02.*
- rmm=22.02.*
- dask-cuda=22.02.*
- ucx-py=0.23
- ucx-proc=*=gpu
- doxygen>=1.8.20
- libfaiss>=1.7.0
- faiss-proc=*=cuda
- pip
- pip:
- sphinx_markdown_tables
- git+https://github.com/dask/[email protected]
- git+https://github.com/dask/[email protected]

# rapids-build-env, notebook-env and doc-env are defined in
# https://docs.rapids.ai/maintainers/depmgmt/

# To install different versions of packages contained in those meta packages,
# it is recommended to remove those meta packages (without removing the actual
# packages contained in the environment) first with:
# conda remove --force rapids-build-env rapids-notebook-env rapids-doc-env

0 comments on commit a3e8181

Please sign in to comment.