Skip to content

Commit 919629b

Browse files
fix rebase
1 parent 3fdb37a commit 919629b

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

ext/LinearSolveRecursiveFactorizationExt.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ const PREALLOCATED_RF32_LU = begin
4242
end
4343

4444
function LinearSolve.init_cacheval(alg::RF32MixedLUFactorization{P, T}, A, b, u, Pl, Pr,
45-
maxiters::Int, abstol, reltol, verbose::LinearSolve.LinearVerbosity,
45+
maxiters::Int, abstol, reltol, verbose::Bool,
4646
assumptions::LinearSolve.OperatorAssumptions) where {P, T}
4747
# Pre-allocate appropriate 32-bit arrays based on input type
4848
if eltype(A) <: Complex

src/openblas.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -303,7 +303,7 @@ const PREALLOCATED_OPENBLAS32_LU = begin
303303
end
304304

305305
function LinearSolve.init_cacheval(alg::OpenBLAS32MixedLUFactorization, A, b, u, Pl, Pr,
306-
maxiters::Int, abstol, reltol, verbose::LinearVerbosity,
306+
maxiters::Int, abstol, reltol, verbose::Bool,
307307
assumptions::OperatorAssumptions)
308308
# Pre-allocate appropriate 32-bit arrays based on input type
309309
if eltype(A) <: Complex

0 commit comments

Comments
 (0)