Skip to content

Commit 40de332

Browse files
committed
Add cusparseLt in supported_nvidia_headers.py
1 parent 3ee040a commit 40de332

File tree

4 files changed

+5
-2
lines changed

4 files changed

+5
-2
lines changed

cuda_pathfinder/cuda/pathfinder/_headers/supported_nvidia_headers.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -59,6 +59,7 @@
5959
}
6060

6161
SUPPORTED_HEADERS_NON_CTK_COMMON = {
62+
"cusparseLt": "cusparseLt.h",
6263
"cutensor": "cutensor.h",
6364
}
6465
SUPPORTED_HEADERS_NON_CTK_LINUX_ONLY = {
@@ -75,6 +76,7 @@
7576
)
7677

7778
SUPPORTED_SITE_PACKAGE_HEADER_DIRS_NON_CTK = {
79+
"cusparseLt": ("nvidia/cusparselt/include",),
7880
"cutensor": ("cutensor/include",),
7981
"nvshmem": ("nvidia/nvshmem/include",),
8082
}

cuda_pathfinder/tests/test_find_nvidia_headers.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,7 @@
3333
assert STRICTNESS in ("see_what_works", "all_must_work")
3434

3535
NON_CTK_IMPORTLIB_METADATA_DISTRIBUTIONS_NAMES = {
36+
"cusparseLt": r"^nvidia-cusparselt-.*$",
3637
"cutensor": r"^cutensor-.*$",
3738
"nvshmem": r"^nvidia-nvshmem-.*$",
3839
}

toolshed/conda_create_for_pathfinder_testing.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ conda create --yes -n "pathfinder_testing_cu$CudaVersion" python=3.13 "cuda-tool
1414
conda activate "pathfinder_testing_cu$CudaVersion"
1515

1616
$cpkgs = @(
17-
"cusparselt",
17+
"cusparselt-dev",
1818
"cutensor",
1919
"libcublasmp-dev",
2020
"libcudss-dev",

toolshed/conda_create_for_pathfinder_testing.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ conda create --yes -n "pathfinder_testing_cu$1" python=3.13 cuda-toolkit="$1"
1414
conda activate "pathfinder_testing_cu$1"
1515

1616
for cpkg in \
17-
cusparselt \
17+
cusparselt-dev \
1818
cutensor \
1919
libcublasmp-dev \
2020
libcudss-dev \

0 commit comments

Comments
 (0)