Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion python/libcuvs/libcuvs/load.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# SPDX-FileCopyrightText: Copyright (c) 2025, NVIDIA CORPORATION.
# SPDX-FileCopyrightText: Copyright (c) 2025-2026, NVIDIA CORPORATION & AFFILIATES. All rights reserved.
# SPDX-License-Identifier: Apache-2.0
#

Expand Down Expand Up @@ -39,9 +39,11 @@ def load_library():
# references their symbols
import libraft
import librmm
from cuda.pathfinder import load_nvidia_dynamic_lib

librmm.load_library()
libraft.load_library()
load_nvidia_dynamic_lib("nvrtc")
except ModuleNotFoundError:
# These runtime dependencies might be satisfied by conda packages
# (which do not have any Python modules) instead of wheels. In that
Expand Down
Loading