File tree Expand file tree Collapse file tree 3 files changed +16
-2
lines changed Expand file tree Collapse file tree 3 files changed +16
-2
lines changed Original file line number Diff line number Diff line change
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
+
1
15
Fri Aug 08 2025 Łukasz Stolarczuk <lukasz.stolarczuk@intel.com>
2
16
3
17
* Version 1.0.1
Original file line number Diff line number Diff line change @@ -154,7 +154,7 @@ static void init_cu_global_state(void) {
154
154
#ifdef _WIN32
155
155
const char * lib_name = "nvcuda.dll" ;
156
156
#else
157
- const char * lib_name = "libcuda.so" ;
157
+ const char * lib_name = "libcuda.so.1 " ;
158
158
#endif
159
159
// The CUDA shared library should be already loaded by the user
160
160
// of the CUDA provider. UMF just want to reuse it
Original file line number Diff line number Diff line change @@ -110,7 +110,7 @@ int InitCUDAOps() {
110
110
#ifdef _WIN32
111
111
const char *lib_name = " nvcuda.dll" ;
112
112
#else
113
- const char *lib_name = " libcuda.so" ;
113
+ const char *lib_name = " libcuda.so.1 " ;
114
114
#endif
115
115
// CUDA symbols
116
116
#if OPEN_CU_LIBRARY_GLOBAL
You can’t perform that action at this time.
0 commit comments