Skip to content

Commit 8ba018c

Browse files
committed
Keep entries of _SUPPORTED_BITCODE_LIBS_INFO in lexicographic order
Signed-off-by: Xiakun Lu <xiakunl@nvidia.com>
1 parent 552c3c6 commit 8ba018c

1 file changed

Lines changed: 6 additions & 6 deletions

File tree

cuda_pathfinder/cuda/pathfinder/_static_libs/find_bitcode_lib.py

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -42,18 +42,18 @@ class _BitcodeLibInfo(TypedDict):
4242
),
4343
"available_on_windows": True,
4444
},
45-
"nvshmem_device": {
46-
"filename": "libnvshmem_device.bc",
47-
"rel_path": "lib",
48-
"site_packages_dirs": ("nvidia/nvshmem/lib",),
49-
"available_on_windows": False,
50-
},
5145
"nccl": {
5246
"filename": "libnccl_device.bc",
5347
"rel_path": "lib",
5448
"site_packages_dirs": ("nvidia/nccl/lib",),
5549
"available_on_windows": False,
5650
},
51+
"nvshmem_device": {
52+
"filename": "libnvshmem_device.bc",
53+
"rel_path": "lib",
54+
"site_packages_dirs": ("nvidia/nvshmem/lib",),
55+
"available_on_windows": False,
56+
},
5757
}
5858

5959
# Public API: just the supported library names

0 commit comments

Comments
 (0)