Skip to content

Commit 9bfef5f

Browse files
committed
Add SUPPORTED_HEADERS_NON_CTK to cuda_pathfinder/docs/source/api.rst
1 parent 7aa6679 commit 9bfef5f

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

cuda_pathfinder/cuda/pathfinder/__init__.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,14 +11,17 @@
1111
)
1212
from cuda.pathfinder._headers.find_nvidia_headers import find_nvidia_header_directory as find_nvidia_header_directory
1313
from cuda.pathfinder._headers.supported_nvidia_headers import SUPPORTED_HEADERS_CTK as _SUPPORTED_HEADERS_CTK
14+
from cuda.pathfinder._headers.supported_nvidia_headers import SUPPORTED_HEADERS_NON_CTK as _SUPPORTED_HEADERS_NON_CTK
1415
from cuda.pathfinder._version import __version__ as __version__
1516

16-
# Indirection to help Sphinx find the docstring.
17+
# Indirections to help Sphinx find the docstrings.
1718
#: Mapping from short CUDA Toolkit (CTK) library names to their canonical
1819
#: header basenames (used to validate a discovered include directory).
1920
#: Example: ``"cublas" → "cublas.h"``. The key set is platform-aware
2021
#: (e.g., ``"cufile"`` may be Linux-only).
2122
SUPPORTED_HEADERS_CTK = _SUPPORTED_HEADERS_CTK
23+
#: Mapping from non-CTK library names to their canonical header basenames.
24+
SUPPORTED_HEADERS_NON_CTK = _SUPPORTED_HEADERS_NON_CTK
2225

2326
# Backward compatibility: _find_nvidia_header_directory was added in release 1.2.2.
2427
# It will be removed in release 1.2.4.

cuda_pathfinder/docs/source/api.rst

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,4 +18,5 @@ and experimental APIs for locating NVIDIA C/C++ header directories.
1818
DynamicLibNotFoundError
1919

2020
SUPPORTED_HEADERS_CTK
21+
SUPPORTED_HEADERS_NON_CTK
2122
find_nvidia_header_directory

0 commit comments

Comments
 (0)