Skip to content

Commit 9327aea

Browse files
committed
pathfinder: classify cudla as a CTK library
Move cudla into the CTK descriptor block so its packaging classification matches how it is shipped in toolkit installs and the optional nvidia-cudla wheel. This keeps the catalog organization consistent with the current understanding of cudla as a CUDA Toolkit component rather than a third-party add-on. Made-with: Cursor
1 parent 8b88040 commit 9327aea

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

cuda_pathfinder/cuda/pathfinder/_dynamic_libs/descriptor_catalog.py

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -290,6 +290,12 @@ class DescriptorSpec:
290290
anchor_rel_dirs_windows=("extras/CUPTI/lib64", "bin"),
291291
ctk_root_canary_anchor_libnames=("cudart",),
292292
),
293+
DescriptorSpec(
294+
name="cudla",
295+
packaged_with="ctk",
296+
linux_sonames=("libcudla.so.1",),
297+
site_packages_linux=("nvidia/cu13/lib",),
298+
),
293299
# -----------------------------------------------------------------------
294300
# Third-party / separately packaged libraries
295301
# -----------------------------------------------------------------------
@@ -324,12 +330,6 @@ class DescriptorSpec:
324330
site_packages_windows=("nvidia/cu13/bin", "nvidia/cu12/bin"),
325331
dependencies=("nvrtc",),
326332
),
327-
DescriptorSpec(
328-
name="cudla",
329-
packaged_with="other",
330-
linux_sonames=("libcudla.so.1",),
331-
site_packages_linux=("nvidia/cu13/lib",),
332-
),
333333
DescriptorSpec(
334334
name="cudss",
335335
packaged_with="other",

0 commit comments

Comments
 (0)