Skip to content

Commit 12d291b

Browse files
committed
docs(core): add 1.0.0 release notes for Linker.backend change
Breaking change: Linker.backend is now a classmethod, so call sites must use parens: Linker.backend().
1 parent 6327b22 commit 12d291b

File tree

1 file changed

+17
-0
lines changed

1 file changed

+17
-0
lines changed
Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
.. SPDX-FileCopyrightText: Copyright (c) 2026 NVIDIA CORPORATION & AFFILIATES. All rights reserved.
2+
.. SPDX-License-Identifier: Apache-2.0
3+
4+
.. currentmodule:: cuda.core
5+
6+
``cuda.core`` 1.0.0 Release Notes
7+
=================================
8+
9+
10+
Breaking Changes
11+
----------------
12+
13+
- :meth:`Linker.backend` is now a classmethod instead of an instance property.
14+
Call sites must use ``Linker.backend()`` (with parentheses) instead of
15+
``linker.backend``. This allows querying the linking backend without
16+
constructing a ``Linker`` instance — for example, to choose between PTX and
17+
LTOIR input before linking.

0 commit comments

Comments
 (0)