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 69f1553 commit 6266f0eCopy full SHA for 6266f0e
src/lu.jl
@@ -30,8 +30,12 @@ const RECURSION_THRESHOLD = Ref(-1)
30
31
# AVX512 needs a smaller recursion limit
32
function pick_threshold()
33
- blasvendor = BLAS.vendor()
34
RECURSION_THRESHOLD[] >= 0 && return RECURSION_THRESHOLD[]
+ blasvendor = @static if VERSION >= v"1.7.0-DEV.610"
35
+ :openblas64
36
+ else
37
+ BLAS.vendor()
38
+ end
39
if blasvendor === :openblas || blasvendor === :openblas64
40
LoopVectorization.register_size() == 64 ? 110 : 72
41
else
0 commit comments