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

Update README and CONTRIBUTING for 0.19 #7778

Merged
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
8 changes: 4 additions & 4 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -131,13 +131,13 @@ run each time you commit changes.

Compiler requirements:

* `gcc` version 5.4+
* `nvcc` version 10.0+
* `cmake` version 3.14.0+
* `gcc` version 7.1+
* `nvcc` version 10.1+
* `cmake` version 3.18.0+

CUDA/GPU requirements:

* CUDA 10.0+
* CUDA 10.1+
* NVIDIA driver 410.48+
* Pascal architecture or better

Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -65,15 +65,15 @@ Please see the [Demo Docker Repository](https://hub.docker.com/r/rapidsai/rapids

cuDF can be installed with conda ([miniconda](https://conda.io/miniconda.html), or the full [Anaconda distribution](https://www.anaconda.com/download)) from the `rapidsai` channel:

For `cudf version == 0.18` :
For `cudf version == 0.19` :
```bash
# for CUDA 10.1
conda install -c rapidsai -c nvidia -c numba -c conda-forge \
cudf=0.18 python=3.7 cudatoolkit=10.1
cudf=0.19 python=3.7 cudatoolkit=10.1

# or, for CUDA 10.2
conda install -c rapidsai -c nvidia -c numba -c conda-forge \
cudf=0.18 python=3.7 cudatoolkit=10.2
cudf=0.19 python=3.7 cudatoolkit=10.2

```

Expand Down