Skip to content

Commit 930e77b

Browse files
authored
Merge pull request #217 from vzhurba01/patch-12.6.2
Patch 12.6.2
2 parents 5a27683 + f35b3bd commit 930e77b

28 files changed

+129
-24
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@ cuda_bindings/cuda/bindings/_bindings/cydriver.pxd
1919
cuda_bindings/cuda/bindings/_bindings/cydriver.pyx
2020
cuda_bindings/cuda/bindings/_bindings/cynvrtc.pxd
2121
cuda_bindings/cuda/bindings/_bindings/cynvrtc.pyx
22+
cuda_bindings/cuda/bindings/_internal/nvjitlink.pyx
2223
cuda_bindings/cuda/bindings/_lib/cyruntime/cyruntime.pxd
2324
cuda_bindings/cuda/bindings/_lib/cyruntime/cyruntime.pyx
2425
cuda_bindings/cuda/bindings/_lib/cyruntime/utils.pxd

cuda_bindings/cuda/ccuda.pyx

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,3 +5,8 @@ cdef extern from *:
55
#pragma message ( "The cuda.ccuda module is deprecated and will be removed in a future release, " \
66
"please switch to use the cuda.bindings.cydriver module instead." )
77
"""
8+
9+
10+
from cuda.bindings import cydriver
11+
__pyx_capi__ = cydriver.__pyx_capi__
12+
del cydriver

cuda_bindings/cuda/ccudart.pyx

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,3 +5,8 @@ cdef extern from *:
55
#pragma message ( "The cuda.ccudart module is deprecated and will be removed in a future release, " \
66
"please switch to use the cuda.bindings.cyruntime module instead." )
77
"""
8+
9+
10+
from cuda.bindings import cyruntime
11+
__pyx_capi__ = cyruntime.__pyx_capi__
12+
del cyruntime

cuda_bindings/cuda/cnvrtc.pyx

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,3 +5,8 @@ cdef extern from *:
55
#pragma message ( "The cuda.cnvrtc module is deprecated and will be removed in a future release, " \
66
"please switch to use the cuda.bindings.cynvrtc module instead." )
77
"""
8+
9+
10+
from cuda.bindings import cynvrtc
11+
__pyx_capi__ = cynvrtc.__pyx_capi__
12+
del cynvrtc

cuda_bindings/docs/source/release.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
maxdepth: 3
66
---
77
8+
12.6.2 <release/12.6.2-notes>
89
12.6.1 <release/12.6.1-notes>
910
12.6.0 <release/12.6.0-notes>
1011
12.5.0 <release/12.5.0-notes>
@@ -14,6 +15,7 @@ maxdepth: 3
1415
12.2.0 <release/12.2.0-notes>
1516
12.1.0 <release/12.1.0-notes>
1617
12.0.0 <release/12.0.0-notes>
18+
11.8.5 <release/11.8.5-notes>
1719
11.8.4 <release/11.8.4-notes>
1820
11.8.3 <release/11.8.3-notes>
1921
11.8.2 <release/11.8.2-notes>

cuda_bindings/docs/source/release/11.4.0-notes.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
Released on August 16, 2021
44

5-
## Hightlights
5+
## Highlights
66
- Initial EA release for CUDA Python
77
- Supports all platforms that CUDA is supported
88
- Supports all CUDA 11.x releases

cuda_bindings/docs/source/release/11.5.0-notes.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
Released on October 18, 2021
44

5-
## Hightlights
5+
## Highlights
66
- PyPi support
77
- Conda support
88
- GA release for CUDA Python

cuda_bindings/docs/source/release/11.6.0-notes.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
Released on Januray 12, 2022
44

5-
## Hightlights
5+
## Highlights
66
- Support CUDA Toolkit 11.6
77
- Support Profiler APIs
88
- Support Graphic APIs (EGL, GL, VDPAU)

cuda_bindings/docs/source/release/11.6.1-notes.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
Released on March 18, 2022
44

5-
## Hightlights
5+
## Highlights
66
- Fix string decomposition for WSL library load
77

88
## Limitations

cuda_bindings/docs/source/release/11.7.0-notes.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
Released on May 11, 2022
44

5-
## Hightlights
5+
## Highlights
66
- Support CUDA Toolkit 11.7
77

88
## Limitations

0 commit comments

Comments
 (0)