diff --git a/cuda_core/cuda/core/_version.py b/cuda_core/cuda/core/_version.py index 3ba92949c..df0a90552 100644 --- a/cuda_core/cuda/core/_version.py +++ b/cuda_core/cuda/core/_version.py @@ -2,4 +2,4 @@ # # SPDX-License-Identifier: Apache-2.0 -__version__ = "0.3.1" +__version__ = "0.3.2" diff --git a/cuda_core/docs/source/release/0.3.2-notes.rst b/cuda_core/docs/source/release/0.3.2-notes.rst new file mode 100644 index 000000000..8b4763ed3 --- /dev/null +++ b/cuda_core/docs/source/release/0.3.2-notes.rst @@ -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. diff --git a/cuda_core/docs/versions.json b/cuda_core/docs/versions.json index c4485906b..f5e2af0a2 100644 --- a/cuda_core/docs/versions.json +++ b/cuda_core/docs/versions.json @@ -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", diff --git a/cuda_core/pyproject.toml b/cuda_core/pyproject.toml index adfa6c568..83cec4d53 100644 --- a/cuda_core/pyproject.toml +++ b/cuda_core/pyproject.toml @@ -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/"