@@ -245,14 +245,14 @@ const PREALLOCATED_OPENBLAS_LU = begin
245245end
246246
247247function LinearSolve. init_cacheval (alg:: OpenBLASLUFactorization , A, b, u, Pl, Pr,
248- maxiters:: Int , abstol, reltol, verbose:: Bool ,
248+ maxiters:: Int , abstol, reltol, verbose:: LinearVerbosity ,
249249 assumptions:: OperatorAssumptions )
250250 PREALLOCATED_OPENBLAS_LU
251251end
252252
253253function LinearSolve. init_cacheval (alg:: OpenBLASLUFactorization ,
254254 A:: AbstractMatrix{<:Union{Float32, ComplexF32, ComplexF64}} , b, u, Pl, Pr,
255- maxiters:: Int , abstol, reltol, verbose:: Bool ,
255+ maxiters:: Int , abstol, reltol, verbose:: LinearVerbosity ,
256256 assumptions:: OperatorAssumptions )
257257 A = rand (eltype (A), 0 , 0 )
258258 ArrayInterface. lu_instance (A), Ref {BlasInt} ()
@@ -303,7 +303,7 @@ const PREALLOCATED_OPENBLAS32_LU = begin
303303end
304304
305305function LinearSolve. init_cacheval (alg:: OpenBLAS32MixedLUFactorization , A, b, u, Pl, Pr,
306- maxiters:: Int , abstol, reltol, verbose:: Bool ,
306+ maxiters:: Int , abstol, reltol, verbose:: LinearVerbosity ,
307307 assumptions:: OperatorAssumptions )
308308 # Pre-allocate appropriate 32-bit arrays based on input type
309309 m, n = size (A)
0 commit comments