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
7 changes: 7 additions & 0 deletions src/initialization.jl
Original file line number Diff line number Diff line change
Expand Up @@ -214,6 +214,13 @@ function __init__()
"cublas", "cupti", "cusparse", "cufft", "curand", "cusolver"]
for lib in Libdl.dllist()
contains(lib, "artifacts") && continue

# skip driver store directories on Windows - these contain legitimate libraries
# that are part of the display driver installation (at least on CUDA 13+)
if Sys.iswindows() && contains(lib, "DriverStore")
continue
end

if any(rtlib -> contains(lib, rtlib), runtime_libraries)
@warn """CUDA runtime library `$(basename(lib))` was loaded from a system path, `$lib`.
This may cause errors.
Expand Down