Skip to content

Commit b1acdb2

Browse files
authored
Bump cuda.core to 0.3.2 (#817)
* bump cuda.core 0.3.2 * update docs
1 parent e79cf86 commit b1acdb2

File tree

4 files changed

+44
-1
lines changed

4 files changed

+44
-1
lines changed

cuda_core/cuda/core/_version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@
22
#
33
# SPDX-License-Identifier: Apache-2.0
44

5-
__version__ = "0.3.1"
5+
__version__ = "0.3.2"
Lines changed: 40 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
1+
.. SPDX-FileCopyrightText: Copyright (c) 2025 NVIDIA CORPORATION & AFFILIATES. All rights reserved.
2+
.. SPDX-License-Identifier: Apache-2.0
3+
4+
.. currentmodule:: cuda.core.experimental
5+
6+
``cuda.core`` 0.3.2 Release Notes
7+
=================================
8+
9+
Released on Aug 7, 2025
10+
11+
12+
Highlights
13+
----------
14+
15+
- Support CUDA 13. ``pip install cuda-core[cu13]`` also works now.
16+
- This is the last release that officially supports CUDA 11.
17+
18+
19+
Breaking Changes
20+
----------------
21+
22+
None.
23+
24+
25+
New features
26+
------------
27+
28+
- :class:`Stream` and :class:`Event` can be subclassed now.
29+
30+
31+
New examples
32+
------------
33+
34+
None.
35+
36+
37+
Fixes and enhancements
38+
----------------------
39+
40+
- :meth:`Device.set_current` is made faster.

cuda_core/docs/versions.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
{
22
"latest" : "latest",
3+
"0.3.2" : "0.3.2",
34
"0.3.1" : "0.3.1",
45
"0.3.0" : "0.3.0",
56
"0.2.0" : "0.2.0",

cuda_core/pyproject.toml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -48,9 +48,11 @@ dependencies = [
4848
[project.optional-dependencies]
4949
cu11 = ["cuda-bindings[all]==11.8.*"]
5050
cu12 = ["cuda-bindings[all]==12.*"]
51+
cu13 = ["cuda-bindings[all]==13.*"]
5152
test = ["cython>=3.0", "setuptools", "pytest>=6.2.4"]
5253
test-cu11 = ["cuda-core[test]", "cupy-cuda11x", "nvidia-cuda-runtime-cu11"] # runtime headers needed by CuPy
5354
test-cu12 = ["cuda-core[test]", "cupy-cuda12x", "nvidia-cuda-runtime-cu12"] # runtime headers needed by CuPy
55+
# TODO add test-cu13 once CuPy is ready
5456

5557
[project.urls]
5658
homepage = "https://nvidia.github.io/cuda-python/"

0 commit comments

Comments
 (0)