diff --git a/ChangeLog b/ChangeLog index c55cb871e9..0de579ecf8 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,17 @@ +Tue Sep 16 2025 Łukasz Stolarczuk + + * Version 1.0.3 + + This patch release contains following change: + - load libcuda.so.1 instead of libcuda.so on linux (#1518) + +Wed Sep 03 2025 Łukasz Stolarczuk + + * Version 1.0.2 + + This patch release contains following change: + - initialize hwloc topology only before first fork, not always (#1509) + Fri Aug 08 2025 Łukasz Stolarczuk * Version 1.0.1 diff --git a/src/provider/provider_cuda.c b/src/provider/provider_cuda.c index b6c15d2d1b..3631bebf8b 100644 --- a/src/provider/provider_cuda.c +++ b/src/provider/provider_cuda.c @@ -154,7 +154,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 diff --git a/test/providers/cuda_helpers.cpp b/test/providers/cuda_helpers.cpp index 3e81c184ff..4678ea4acd 100644 --- a/test/providers/cuda_helpers.cpp +++ b/test/providers/cuda_helpers.cpp @@ -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