Skip to content

Commit

Permalink
23.08 Release Selector and Install Page Updates (#414)
Browse files Browse the repository at this point in the history
closes #413 

This PR contains the updates to the release selector required for the
conda-forge CUDA 12.0 work as well as the docker overhaul.

To do:
- [x] CUDA 12 conda-forge updates
- [x] Docker Overhaul updates to the selector
- [x] Docker overhaul updates to the install page
- [x] `23.08` release updates

This PR updates:
- Selector
   - Enables CUDA 12.0 for conda packages
   - Disables CUDA 12.0 for arm conda packages
   - Disables cuSignal from conda CUDA 12.0
   - Removes the note on cuSignal for conda CUDA 12.0
- Removes `PyCaret` as a conda additional package, it's now only
available on pip for the newest versions
      - https://pypi.org/project/pycaret/#history
      - https://anaconda.org/conda-forge/pycaret/files
   - Updated to new docker setup
      - Much simpler, only `base` and `notebooks` 
      - No OS selection
      - Same CUDA 12 restrictions as Conda
 - Install page
    - Adds 2 troubleshooting steps about conda CUDA 12
       - No ARM
       - PyTorch CUDA version compatibilities
- Expands the CUDA version compatibility section and breaks it up into
docker/conda and pip

I've also merged in #412 to simplify merging at release.

---------

Co-authored-by: Bradley Dice <[email protected]>
Co-authored-by: Ray Douglass <[email protected]>
Co-authored-by: jakirkham <[email protected]>
Co-authored-by: AJ Schmidt <[email protected]>
  • Loading branch information
5 people authored Aug 14, 2023
1 parent 221173c commit 509f416
Show file tree
Hide file tree
Showing 4 changed files with 273 additions and 313 deletions.
38 changes: 38 additions & 0 deletions _data/previous_releases.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,42 @@
[
{
"version": "23.08",
"cudf_dev": {
"start": "May 18 2023",
"end": "Jul 19 2023",
"days": 40
},
"other_dev": {
"start": "May 25 2023",
"end": "Jul 26 2023",
"days": 40
},
"cudf_burndown": {
"start": "Jul 20 2023",
"end": "Jul 26 2023",
"days": 5
},
"other_burndown": {
"start": "Jul 27 2023",
"end": "Aug 2 2023",
"days": 5
},
"cudf_codefreeze": {
"start": "Jul 27 2023",
"end": "Aug 8 2023",
"days": 9
},
"other_codefreeze": {
"start": "Aug 3 2023",
"end": "Aug 8 2023",
"days": 4
},
"release": {
"start": "Aug 9 2023",
"end": "Aug 10 2023",
"days": 2
}
},
{
"version": "23.06",
"cudf_dev": {
Expand Down
82 changes: 41 additions & 41 deletions _data/releases.json
Original file line number Diff line number Diff line change
@@ -1,85 +1,85 @@
{
"legacy": {
"version": "23.04",
"date": "Apr 13 2023"
},
"stable": {
"version": "23.06",
"date": "Jun 8 2023"
},
"nightly": {
"stable": {
"version": "23.08",
"date": "Aug 10 2023"
},
"nightly": {
"version": "23.10",
"cudf_dev": {
"start": "May 18 2023",
"end": "Jul 19 2023",
"days": 40
"start": "Jul 20 2023",
"end": "Sep 20 2023",
"days": 42
},
"other_dev": {
"start": "May 25 2023",
"end": "Jul 26 2023",
"days": 40
"start": "Jul 27 2023",
"end": "Sep 27 2023",
"days": 42
},
"cudf_burndown": {
"start": "Jul 20 2023",
"end": "Jul 26 2023",
"start": "Sep 21 2023",
"end": "Sep 27 2023",
"days": 5
},
"other_burndown": {
"start": "Jul 27 2023",
"end": "Aug 2 2023",
"start": "Sep 28 2023",
"end": "Oct 4 2023",
"days": 5
},
"cudf_codefreeze": {
"start": "Jul 27 2023",
"end": "Aug 8 2023",
"start": "Sep 28 2023",
"end": "Oct 10 2023",
"days": 9
},
"other_codefreeze": {
"start": "Aug 3 2023",
"end": "Aug 8 2023",
"start": "Oct 5 2023",
"end": "Oct 10 2023",
"days": 4
},
"release": {
"start": "Aug 9 2023",
"end": "Aug 10 2023",
"start": "Oct 11 2023",
"end": "Oct 12 2023",
"days": 2
}
},
"next_nightly": {
"version": "23.10",
"version": "23.12",
"cudf_dev": {
"start": "Jul 20 2023",
"end": "Sep 20 2023",
"days": 42
"start": "Sep 21 2023",
"end": "Nov 8 2023",
"days": 35
},
"other_dev": {
"start": "Jul 27 2023",
"end": "Sep 20 2023",
"days": 42
"start": "Sep 28 2023",
"end": "Nov 15 2023",
"days": 34
},
"cudf_burndown": {
"start": "Sep 21 2023",
"end": "Sep 27 2023",
"days": 5
"start": "Nov 9 2023",
"end": "Nov 15 2023",
"days": 4
},
"other_burndown": {
"start": "Sep 28 2023",
"end": "Oct 4 2023",
"days": 5
"start": "Nov 16 2023",
"end": "Nov 29 2023",
"days": 8
},
"cudf_codefreeze": {
"start": "Sep 28 2023",
"end": "Oct 10 2023",
"days": 9
"start": "Nov 16 2023",
"end": "Dec 5 2023",
"days": 12
},
"other_codefreeze": {
"start": "Oct 5 2023",
"end": "Oct 10 2023",
"start": "Nov 30 2023",
"end": "Dec 5 2023",
"days": 4
},
"release": {
"start": "Oct 11 2023",
"end": "Oct 12 2023",
"start": "Dec 6 2023",
"end": "Dec 7 2023",
"days": 2
}
}
Expand Down
Loading

0 comments on commit 509f416

Please sign in to comment.