Skip to content

Commit 1179044

Browse files
authored
Merge pull request #53 from simonp0420/patch-1
Fix test for MKL on Windows
2 parents 48557f1 + dfaf5b9 commit 1179044

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

perf/lu.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ end
4747
using DataFrames, VegaLite
4848
blaslib = if VERSION v"1.7.0-beta2"
4949
config = BLAS.get_config().loaded_libs
50-
occursin("libmkl_rt", config[1].libname) ? :MKL : :OpenBLAS
50+
occursin("mkl_rt", config[1].libname) ? :MKL : :OpenBLAS
5151
else
5252
BLAS.vendor() === :mkl ? :MKL : :OpenBLAS
5353
end

0 commit comments

Comments
 (0)