Skip to content

Commit

Permalink
Merge pull request #239 from leofang/back_to_beta
Browse files Browse the repository at this point in the history
Update docs to reflect recent releases
  • Loading branch information
leofang authored Nov 14, 2024
2 parents 92aa731 + e422fdb commit d96f88b
Show file tree
Hide file tree
Showing 9 changed files with 39 additions and 12 deletions.
8 changes: 6 additions & 2 deletions cuda_bindings/docs/build_docs.sh
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,13 @@
set -ex

# SPHINX_CUDA_BINDINGS_VER is used to create a subdir under build/html
# (the Makefile file for sphinx-build also honors it if defined)
# (the Makefile file for sphinx-build also honors it if defined).
# If there's a post release (ex: .post1) we don't want it to show up in the
# version selector or directory structure.
if [[ -z "${SPHINX_CUDA_BINDINGS_VER}" ]]; then
export SPHINX_CUDA_BINDINGS_VER=$(python -c "from importlib.metadata import version; print(version('cuda-python'))" \
export SPHINX_CUDA_BINDINGS_VER=$(python -c "from importlib.metadata import version; \
ver = '.'.join(str(version('cuda-python')).split('.')[:3]); \
print(ver)" \
| awk -F'+' '{print $1}')
fi

Expand Down
6 changes: 4 additions & 2 deletions cuda_bindings/docs/source/release/11.8.5-notes.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,11 @@
# CUDA Python 11.8.5 Release notes

Released on November 5, 2024
Released on November 5, 2024. Post 1 rebuild released on November 12, 2024.

## Highlights
- Resolve [Issue #215](https://github.com/NVIDIA/cuda-python/issues/215): module 'cuda.ccudart' has no attribute '__pyx_capi__'
- Resolve [Issue #215](https://github.com/NVIDIA/cuda-python/issues/215): module `cuda.ccudart` has no attribute `__pyx_capi__`
- Resolve [Issue #226](https://github.com/NVIDIA/cuda-python/issues/226): top-level Cython source files not packaged


## Limitations

Expand Down
6 changes: 4 additions & 2 deletions cuda_bindings/docs/source/release/12.6.2-notes.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,11 @@
# CUDA Python 12.6.2 Release notes

Released on November 5, 2024
Released on November 5, 2024. Post 1 rebuild released on November 12, 2024.

## Highlights
- Resolve [Issue #215](https://github.com/NVIDIA/cuda-python/issues/215): module 'cuda.ccudart' has no attribute '__pyx_capi__'
- Resolve [Issue #215](https://github.com/NVIDIA/cuda-python/issues/215): module `cuda.ccudart` has no attribute `__pyx_capi__`
- Resolve [Issue #226](https://github.com/NVIDIA/cuda-python/issues/226): top-level Cython source files not packaged


## Limitations

Expand Down
3 changes: 2 additions & 1 deletion cuda_bindings/docs/versions.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
{
"latest" : "latest",
"12.6.1" : "12.6.1"
"12.6.1" : "12.6.1",
"12.6.2" : "12.6.2"
}
4 changes: 2 additions & 2 deletions cuda_core/docs/source/release/0.1.0-notes.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
# `cuda.core` Release notes

Released on Nov XX, 2024
Released on Nov 8, 2024

## Hightlights
- Initial EA1 (early access) release
- Initial beta release
- Supports all platforms that CUDA is supported
- Supports all CUDA 11.x/12.x drivers
- Supports all CUDA 11.x/12.x Toolkits
Expand Down
8 changes: 6 additions & 2 deletions cuda_python/docs/build_docs.sh
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,13 @@
set -ex

# SPHINX_CUDA_PYTHON_VER is used to create a subdir under build/html
# (the Makefile file for sphinx-build also honors it if defined)
# (the Makefile file for sphinx-build also honors it if defined).
# If there's a post release (ex: .post1) we don't want it to show up in the
# version selector or directory structure.
if [[ -z "${SPHINX_CUDA_PYTHON_VER}" ]]; then
export SPHINX_CUDA_PYTHON_VER=$(python -c "from importlib.metadata import version; print(version('cuda-python'))" \
export SPHINX_CUDA_PYTHON_VER=$(python -c "from importlib.metadata import version; \
ver = '.'.join(str(version('cuda-python')).split('.')[:3]); \
print(ver)" \
| awk -F'+' '{print $1}')
fi

Expand Down
1 change: 1 addition & 0 deletions cuda_python/docs/source/release.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,5 +5,6 @@
maxdepth: 3
---
12.6.2 <release/12.6.2-notes>
12.6.1 <release/12.6.1-notes>
```
12 changes: 12 additions & 0 deletions cuda_python/docs/source/release/12.6.2-notes.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
# CUDA Python Release notes

Released on November 5, 2024. Post 1 rebuild released on November 12, 2024.

## Included components

- [`cuda.bindings` 12.6.2](https://nvidia.github.io/cuda-python/cuda-bindings/12.6.2/release/12.6.2-notes.html)


## Hightlights
- Resolve [Issue #215](https://github.com/NVIDIA/cuda-python/issues/215): module `cuda.ccudart` has no attribute `__pyx_capi__`
- Resolve [Issue #226](https://github.com/NVIDIA/cuda-python/issues/226): top-level Cython source files not packaged
3 changes: 2 additions & 1 deletion cuda_python/docs/versions.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
{
"latest" : "latest",
"12.6.1" : "12.6.1"
"12.6.1" : "12.6.1",
"12.6.2" : "12.6.2"
}

0 comments on commit d96f88b

Please sign in to comment.