File tree Expand file tree Collapse file tree 2 files changed +5
-1
lines changed Expand file tree Collapse file tree 2 files changed +5
-1
lines changed Original file line number Diff line number Diff line change 1111)
1212from cuda .pathfinder ._headers .find_nvidia_headers import find_nvidia_header_directory as find_nvidia_header_directory
1313from 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
1415from 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).
2122SUPPORTED_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.
Original file line number Diff line number Diff 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
You can’t perform that action at this time.
0 commit comments