Skip to content

Commit 37eda7e

Browse files
fix dispatch
1 parent c9d0ab4 commit 37eda7e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/mkl.jl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -196,13 +196,13 @@ const PREALLOCATED_MKL_LU = begin
196196
luinst = ArrayInterface.lu_instance(A), Ref{BlasInt}()
197197
end
198198

199-
function LinearSolve.init_cacheval(alg::AppleAccelerateLUFactorization, A::AbstractMatrix{<:Float64}, b::AbstractArray{<:Float64}, u, Pl, Pr,
199+
function LinearSolve.init_cacheval(alg::MKLLUFactorization, A::AbstractMatrix{<:Float64}, b::AbstractArray{<:Float64}, u, Pl, Pr,
200200
maxiters::Int, abstol, reltol, verbose::Bool,
201201
assumptions::OperatorAssumptions)
202202
PREALLOCATED_MKL_LU
203203
end
204204

205-
function LinearSolve.init_cacheval(alg::AppleAccelerateLUFactorization, A, b, u, Pl, Pr,
205+
function LinearSolve.init_cacheval(alg::MKLLUFactorization, A, b, u, Pl, Pr,
206206
maxiters::Int, abstol, reltol, verbose::Bool,
207207
assumptions::OperatorAssumptions)
208208
A = rand(eltype(A), 0, 0)

0 commit comments

Comments
 (0)