File tree Expand file tree Collapse file tree 9 files changed +39
-12
lines changed
cuda_core/docs/source/release Expand file tree Collapse file tree 9 files changed +39
-12
lines changed Original file line number Diff line number Diff line change 3
3
set -ex
4
4
5
5
# SPHINX_CUDA_BINDINGS_VER is used to create a subdir under build/html
6
- # (the Makefile file for sphinx-build also honors it if defined)
6
+ # (the Makefile file for sphinx-build also honors it if defined).
7
+ # If there's a post release (ex: .post1) we don't want it to show up in the
8
+ # version selector or directory structure.
7
9
if [[ -z " ${SPHINX_CUDA_BINDINGS_VER} " ]]; then
8
- export SPHINX_CUDA_BINDINGS_VER=$( python -c " from importlib.metadata import version; print(version('cuda-python'))" \
10
+ export SPHINX_CUDA_BINDINGS_VER=$( python -c " from importlib.metadata import version; \
11
+ ver = '.'.join(str(version('cuda-python')).split('.')[:3]); \
12
+ print(ver)" \
9
13
| awk -F' +' ' {print $1}' )
10
14
fi
11
15
Original file line number Diff line number Diff line change 1
1
# CUDA Python 11.8.5 Release notes
2
2
3
- Released on November 5, 2024
3
+ Released on November 5, 2024. Post 1 rebuild released on November 12, 2024.
4
4
5
5
## Highlights
6
- - Resolve [ Issue #215 ] ( https://github.com/NVIDIA/cuda-python/issues/215 ) : module 'cuda.ccudart' has no attribute '__ pyx_capi__ '
6
+ - Resolve [ Issue #215 ] ( https://github.com/NVIDIA/cuda-python/issues/215 ) : module ` cuda.ccudart ` has no attribute ` __pyx_capi__ `
7
+ - Resolve [ Issue #226 ] ( https://github.com/NVIDIA/cuda-python/issues/226 ) : top-level Cython source files not packaged
8
+
7
9
8
10
## Limitations
9
11
Original file line number Diff line number Diff line change 1
1
# CUDA Python 12.6.2 Release notes
2
2
3
- Released on November 5, 2024
3
+ Released on November 5, 2024. Post 1 rebuild released on November 12, 2024.
4
4
5
5
## Highlights
6
- - Resolve [ Issue #215 ] ( https://github.com/NVIDIA/cuda-python/issues/215 ) : module 'cuda.ccudart' has no attribute '__ pyx_capi__ '
6
+ - Resolve [ Issue #215 ] ( https://github.com/NVIDIA/cuda-python/issues/215 ) : module ` cuda.ccudart ` has no attribute ` __pyx_capi__ `
7
+ - Resolve [ Issue #226 ] ( https://github.com/NVIDIA/cuda-python/issues/226 ) : top-level Cython source files not packaged
8
+
7
9
8
10
## Limitations
9
11
Original file line number Diff line number Diff line change 1
1
{
2
2
"latest" : " latest" ,
3
- "12.6.1" : " 12.6.1"
3
+ "12.6.1" : " 12.6.1" ,
4
+ "12.6.2" : " 12.6.2"
4
5
}
Original file line number Diff line number Diff line change 1
1
# ` cuda.core ` Release notes
2
2
3
- Released on Nov XX , 2024
3
+ Released on Nov 8 , 2024
4
4
5
5
## Hightlights
6
- - Initial EA1 (early access) release
6
+ - Initial beta release
7
7
- Supports all platforms that CUDA is supported
8
8
- Supports all CUDA 11.x/12.x drivers
9
9
- Supports all CUDA 11.x/12.x Toolkits
Original file line number Diff line number Diff line change 3
3
set -ex
4
4
5
5
# SPHINX_CUDA_PYTHON_VER is used to create a subdir under build/html
6
- # (the Makefile file for sphinx-build also honors it if defined)
6
+ # (the Makefile file for sphinx-build also honors it if defined).
7
+ # If there's a post release (ex: .post1) we don't want it to show up in the
8
+ # version selector or directory structure.
7
9
if [[ -z " ${SPHINX_CUDA_PYTHON_VER} " ]]; then
8
- export SPHINX_CUDA_PYTHON_VER=$( python -c " from importlib.metadata import version; print(version('cuda-python'))" \
10
+ export SPHINX_CUDA_PYTHON_VER=$( python -c " from importlib.metadata import version; \
11
+ ver = '.'.join(str(version('cuda-python')).split('.')[:3]); \
12
+ print(ver)" \
9
13
| awk -F' +' ' {print $1}' )
10
14
fi
11
15
Original file line number Diff line number Diff line change 5
5
maxdepth: 3
6
6
---
7
7
8
+ 12.6.2 <release/12.6.2-notes>
8
9
12.6.1 <release/12.6.1-notes>
9
10
```
Original file line number Diff line number Diff line change
1
+ # CUDA Python Release notes
2
+
3
+ Released on November 5, 2024. Post 1 rebuild released on November 12, 2024.
4
+
5
+ ## Included components
6
+
7
+ - [ ` cuda.bindings ` 12.6.2] ( https://nvidia.github.io/cuda-python/cuda-bindings/12.6.2/release/12.6.2-notes.html )
8
+
9
+
10
+ ## Hightlights
11
+ - Resolve [ Issue #215 ] ( https://github.com/NVIDIA/cuda-python/issues/215 ) : module ` cuda.ccudart ` has no attribute ` __pyx_capi__ `
12
+ - Resolve [ Issue #226 ] ( https://github.com/NVIDIA/cuda-python/issues/226 ) : top-level Cython source files not packaged
Original file line number Diff line number Diff line change 1
1
{
2
2
"latest" : " latest" ,
3
- "12.6.1" : " 12.6.1"
3
+ "12.6.1" : " 12.6.1" ,
4
+ "12.6.2" : " 12.6.2"
4
5
}
You can’t perform that action at this time.
0 commit comments