We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fc07631 commit 732e34aCopy full SHA for 732e34a
src/mkl.jl
@@ -12,7 +12,7 @@ struct MKLLUFactorization <: AbstractFactorization end
12
# MKL_jll < 2022.2 doesn't support the mixed LP64 and ILP64 interfaces that we make use of in LinearSolve
13
# In particular, the `_64` APIs do not exist
14
# 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"
+@static if !@isdefined(MKL_jll) || !MKL_jll.is_available() || pkgversion(MKL_jll) < v"2022.2"
16
__mkl_isavailable() = false
17
else
18
__mkl_isavailable() = true
0 commit comments