Skip to content
Merged
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion src/provider/provider_cuda.c
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,7 @@ static void init_cu_global_state(void) {
#ifdef _WIN32
const char *lib_name = "nvcuda.dll";
#else
const char *lib_name = "libcuda.so";
const char *lib_name = "libcuda.so.1";
#endif
// The CUDA shared library should be already loaded by the user
// of the CUDA provider. UMF just want to reuse it
Expand Down
2 changes: 1 addition & 1 deletion test/providers/cuda_helpers.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ int InitCUDAOps() {
#ifdef _WIN32
const char *lib_name = "nvcuda.dll";
#else
const char *lib_name = "libcuda.so";
const char *lib_name = "libcuda.so.1";
#endif
// CUDA symbols
#if OPEN_CU_LIBRARY_GLOBAL
Expand Down