Skip to content

Commit 5ea1658

Browse files
committed
Increase year range for the hacky windows mkl_rt LoadLibrary search
1 parent eff90e6 commit 5ea1658

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

sparse_dot_mkl/_mkl_interface/_load_library.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,9 @@ def _try_load_mkl_rt(path=None):
1414
"libmkl_rt.dylib",
1515
"mkl_rt.dll"
1616
] + [
17-
f"mkl_rt.{i}.dll" for i in range(5, 0, -1)
17+
f"mkl_rt.{i}.dll" for i in range(8, 0, -1)
1818
] + [
19-
f"libmkl_rt.so.{i}" for i in range(5, 0, -1)
19+
f"libmkl_rt.so.{i}" for i in range(8, 0, -1)
2020
]:
2121
try:
2222
# If this finds anything, break out of the loop

0 commit comments

Comments
 (0)