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 docs to reflect recent releases #239

Merged
merged 4 commits into from
Nov 14, 2024
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: 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"
}