Skip to content

Commit 85afb54

Browse files
Merge branch 'v1.0.x' into 'main'
2 parents 54d7dde + e7d2852 commit 85afb54

File tree

3 files changed

+16
-2
lines changed

3 files changed

+16
-2
lines changed

ChangeLog

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,17 @@
1+
Tue Sep 16 2025 Łukasz Stolarczuk <lukasz.stolarczuk@intel.com>
2+
3+
* Version 1.0.3
4+
5+
This patch release contains following change:
6+
- load libcuda.so.1 instead of libcuda.so on linux (#1518)
7+
8+
Wed Sep 03 2025 Łukasz Stolarczuk <lukasz.stolarczuk@intel.com>
9+
10+
* Version 1.0.2
11+
12+
This patch release contains following change:
13+
- initialize hwloc topology only before first fork, not always (#1509)
14+
115
Fri Aug 08 2025 Łukasz Stolarczuk <lukasz.stolarczuk@intel.com>
216

317
* Version 1.0.1

src/provider/provider_cuda.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -154,7 +154,7 @@ static void init_cu_global_state(void) {
154154
#ifdef _WIN32
155155
const char *lib_name = "nvcuda.dll";
156156
#else
157-
const char *lib_name = "libcuda.so";
157+
const char *lib_name = "libcuda.so.1";
158158
#endif
159159
// The CUDA shared library should be already loaded by the user
160160
// of the CUDA provider. UMF just want to reuse it

test/providers/cuda_helpers.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,7 @@ int InitCUDAOps() {
110110
#ifdef _WIN32
111111
const char *lib_name = "nvcuda.dll";
112112
#else
113-
const char *lib_name = "libcuda.so";
113+
const char *lib_name = "libcuda.so.1";
114114
#endif
115115
// CUDA symbols
116116
#if OPEN_CU_LIBRARY_GLOBAL

0 commit comments

Comments
 (0)