Skip to content

Commit 0480f77

Browse files
authored
Fix pathfinder Windows cupti detection for CTK 13.2.1 (#1906)
* Fix Windows cupti detection for CTK 13.2.1 Add the CTK 13.2.1 CUPTI DLL name to the descriptor catalog so Windows already-loaded detection recognizes the installed library and the cupti pathfinder test can pass again. Made-with: Cursor * docs(pathfinder): prepare 1.5.3 release notes Add the 1.5.3 pathfinder release notes and version-switcher entry so the docs site can publish the new patch release cleanly. Made-with: Cursor
1 parent 82e6bb8 commit 0480f77

File tree

3 files changed

+19
-0
lines changed

3 files changed

+19
-0
lines changed

cuda_pathfinder/cuda/pathfinder/_dynamic_libs/descriptor_catalog.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -271,6 +271,7 @@ class DescriptorSpec:
271271
packaged_with="ctk",
272272
linux_sonames=("libcupti.so.12", "libcupti.so.13"),
273273
windows_dlls=(
274+
"cupti64_2026.1.1.dll",
274275
"cupti64_2026.1.0.dll",
275276
"cupti64_2025.4.1.dll",
276277
"cupti64_2025.3.1.dll",

cuda_pathfinder/docs/nv-versions.json

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,10 @@
33
"version": "latest",
44
"url": "https://nvidia.github.io/cuda-python/cuda-pathfinder/latest/"
55
},
6+
{
7+
"version": "1.5.3",
8+
"url": "https://nvidia.github.io/cuda-python/cuda-pathfinder/1.5.3/"
9+
},
610
{
711
"version": "1.5.2",
812
"url": "https://nvidia.github.io/cuda-python/cuda-pathfinder/1.5.2/"
Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
.. SPDX-FileCopyrightText: Copyright (c) 2025-2026 NVIDIA CORPORATION & AFFILIATES. All rights reserved.
2+
.. SPDX-License-Identifier: Apache-2.0
3+
4+
.. py:currentmodule:: cuda.pathfinder
5+
6+
``cuda-pathfinder`` 1.5.3 Release notes
7+
=======================================
8+
9+
Highlights
10+
----------
11+
12+
* Add support for the Windows CTK 13.2.1 CUPTI DLL name
13+
``cupti64_2026.1.1.dll`` so ``load_nvidia_dynamic_lib("cupti")`` can
14+
recognize the installed library on CTK 13.2.1 systems.

0 commit comments

Comments
 (0)