Skip to content

Bump cuda.core to 0.3.2 #817

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

Merged
merged 2 commits into from
Aug 7, 2025
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
2 changes: 1 addition & 1 deletion cuda_core/cuda/core/_version.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@
#
# SPDX-License-Identifier: Apache-2.0

__version__ = "0.3.1"
__version__ = "0.3.2"
40 changes: 40 additions & 0 deletions cuda_core/docs/source/release/0.3.2-notes.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
.. SPDX-FileCopyrightText: Copyright (c) 2025 NVIDIA CORPORATION & AFFILIATES. All rights reserved.
.. SPDX-License-Identifier: Apache-2.0

.. currentmodule:: cuda.core.experimental

``cuda.core`` 0.3.2 Release Notes
=================================

Released on Aug 7, 2025


Highlights
----------

- Support CUDA 13. ``pip install cuda-core[cu13]`` also works now.
- This is the last release that officially supports CUDA 11.


Breaking Changes
----------------

None.


New features
------------

- :class:`Stream` and :class:`Event` can be subclassed now.


New examples
------------

None.


Fixes and enhancements
----------------------

- :meth:`Device.set_current` is made faster.
1 change: 1 addition & 0 deletions cuda_core/docs/versions.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
{
"latest" : "latest",
"0.3.2" : "0.3.2",
"0.3.1" : "0.3.1",
"0.3.0" : "0.3.0",
"0.2.0" : "0.2.0",
Expand Down
2 changes: 2 additions & 0 deletions cuda_core/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -48,9 +48,11 @@ dependencies = [
[project.optional-dependencies]
cu11 = ["cuda-bindings[all]==11.8.*"]
cu12 = ["cuda-bindings[all]==12.*"]
cu13 = ["cuda-bindings[all]==13.*"]
test = ["cython>=3.0", "setuptools", "pytest>=6.2.4"]
test-cu11 = ["cuda-core[test]", "cupy-cuda11x", "nvidia-cuda-runtime-cu11"] # runtime headers needed by CuPy
test-cu12 = ["cuda-core[test]", "cupy-cuda12x", "nvidia-cuda-runtime-cu12"] # runtime headers needed by CuPy
# TODO add test-cu13 once CuPy is ready

[project.urls]
homepage = "https://nvidia.github.io/cuda-python/"
Expand Down
Loading