Skip to content
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
4 changes: 4 additions & 0 deletions cuda_pathfinder/DESCRIPTION.rst
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,10 @@
cuda-pathfinder: Utilities for locating CUDA components
*******************************************************

.. image:: https://img.shields.io/badge/NVIDIA-black?logo=nvidia
:target: https://www.nvidia.com/
:alt: NVIDIA

`cuda.pathfinder <https://nvidia.github.io/cuda-python/cuda-pathfinder/>`_
aims to be a one-stop solution for locating CUDA components. Currently
it supports locating and loading dynamic libraries (``.so``, ``.dll``);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -85,6 +85,7 @@
DIRECT_DEPENDENCIES = DIRECT_DEPENDENCIES_CTK | {
"mathdx": ("nvrtc",),
"cufftMp": ("nvshmem_host",),
"cudss": ("cublas", "cublasLt"),
}

# Based on these released files:
Expand Down Expand Up @@ -240,6 +241,7 @@
SUPPORTED_LINUX_SONAMES_OTHER = {
"cufftMp": ("libcufftMp.so.11",),
"mathdx": ("libmathdx.so.0",),
"cudss": ("libcudss.so.0",),
"nvpl_fftw": ("libnvpl_fftw.so.0",),
"nvshmem_host": ("libnvshmem_host.so.3",),
}
Expand Down Expand Up @@ -399,6 +401,7 @@
}
SUPPORTED_WINDOWS_DLLS_OTHER = {
"mathdx": ("mathdx64_0.dll",),
"cudss": ("cudss64_0.dll",),
}
SUPPORTED_WINDOWS_DLLS = SUPPORTED_WINDOWS_DLLS_CTK | SUPPORTED_WINDOWS_DLLS_OTHER

Expand Down Expand Up @@ -441,6 +444,7 @@
"nvvm": ("nvidia/cu13/lib", "nvidia/cuda_nvcc/nvvm/lib64"),
}
SITE_PACKAGES_LIBDIRS_LINUX_OTHER = {
"cudss": ("nvidia/cu12/lib",),
"cufftMp": ("nvidia/cufftmp/cu12/lib",),
"mathdx": ("nvidia/cu13/lib", "nvidia/cu12/lib"),
"nvpl_fftw": ("nvpl/lib",),
Expand Down
2 changes: 1 addition & 1 deletion cuda_pathfinder/cuda/pathfinder/_version.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# SPDX-FileCopyrightText: Copyright (c) 2025 NVIDIA CORPORATION & AFFILIATES. All rights reserved.
# SPDX-License-Identifier: Apache-2.0

__version__ = "1.2.0"
__version__ = "1.2.1"
4 changes: 4 additions & 0 deletions cuda_pathfinder/docs/nv-versions.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,10 @@
"version": "latest",
"url": "https://nvidia.github.io/cuda-python/cuda-pathfinder/latest/"
},
{
"version": "1.2.1",
"url": "https://nvidia.github.io/cuda-python/cuda-pathfinder/1.2.1/"
},
{
"version": "1.2.0",
"url": "https://nvidia.github.io/cuda-python/cuda-pathfinder/1.2.0/"
Expand Down
1 change: 1 addition & 0 deletions cuda_pathfinder/docs/source/release.rst
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ Release Notes
.. toctree::
:maxdepth: 3

1.2.1 <release/1.2.1-notes>
1.2.0 <release/1.2.0-notes>
1.1.0 <release/1.1.0-notes>
1.0.0 <release/1.0.0-notes>
15 changes: 15 additions & 0 deletions cuda_pathfinder/docs/source/release/1.2.1-notes.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
.. SPDX-FileCopyrightText: Copyright (c) 2025 NVIDIA CORPORATION & AFFILIATES. All rights reserved.
.. SPDX-License-Identifier: Apache-2.0

.. module:: cuda.pathfinder

``cuda-pathfinder`` 1.2.1 Release notes
=======================================

Released on Aug 29, 2025


Highlights
----------

* Support cuDSS library (`PR #931 <https://github.com/NVIDIA/cuda-python/pull/931>`_)
1 change: 1 addition & 0 deletions cuda_pathfinder/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ nvidia_wheels_cu12 = [
"cuda-toolkit[nvcc,cublas,nvrtc,cudart,cufft,curand,cusolver,cusparse,npp,nvfatbin,nvjitlink,nvjpeg]==12.*",
"cuda-toolkit[cufile]==12.*; sys_platform != 'win32'",
"nvidia-libmathdx-cu12",
"nvidia-cudss-cu12",
"nvidia-cufftmp-cu12; sys_platform != 'win32'",
"nvidia-nvshmem-cu12; sys_platform != 'win32'",
]
Expand Down
Loading