File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree 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+
115Fri Aug 08 2025 Łukasz Stolarczuk <lukasz.stolarczuk@intel.com>
216
317 * 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) {
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
Original file line number Diff line number Diff 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
You can’t perform that action at this time.
0 commit comments