Skip to content

Commit 732e34a

Browse files
Update src/mkl.jl
Co-authored-by: David Müller-Widmann <[email protected]>
1 parent fc07631 commit 732e34a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/mkl.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ struct MKLLUFactorization <: AbstractFactorization end
1212
# MKL_jll < 2022.2 doesn't support the mixed LP64 and ILP64 interfaces that we make use of in LinearSolve
1313
# In particular, the `_64` APIs do not exist
1414
# https://www.intel.com/content/www/us/en/developer/articles/release-notes/onemkl-release-notes-2022.html
15-
@static if !@isdefined(MKL_jll) || !MKL_jll.is_available() || pkgversion(MKL_jll) >= v"2022.2"
15+
@static if !@isdefined(MKL_jll) || !MKL_jll.is_available() || pkgversion(MKL_jll) < v"2022.2"
1616
__mkl_isavailable() = false
1717
else
1818
__mkl_isavailable() = true

0 commit comments

Comments
 (0)