@@ -245,14 +245,14 @@ const PREALLOCATED_OPENBLAS_LU = begin
245
245
end
246
246
247
247
function LinearSolve. init_cacheval (alg:: OpenBLASLUFactorization , A, b, u, Pl, Pr,
248
- maxiters:: Int , abstol, reltol, verbose:: Bool ,
248
+ maxiters:: Int , abstol, reltol, verbose:: LinearVerbosity ,
249
249
assumptions:: OperatorAssumptions )
250
250
PREALLOCATED_OPENBLAS_LU
251
251
end
252
252
253
253
function LinearSolve. init_cacheval (alg:: OpenBLASLUFactorization ,
254
254
A:: AbstractMatrix{<:Union{Float32, ComplexF32, ComplexF64}} , b, u, Pl, Pr,
255
- maxiters:: Int , abstol, reltol, verbose:: Bool ,
255
+ maxiters:: Int , abstol, reltol, verbose:: LinearVerbosity ,
256
256
assumptions:: OperatorAssumptions )
257
257
A = rand (eltype (A), 0 , 0 )
258
258
ArrayInterface. lu_instance (A), Ref {BlasInt} ()
@@ -303,7 +303,7 @@ const PREALLOCATED_OPENBLAS32_LU = begin
303
303
end
304
304
305
305
function LinearSolve. init_cacheval (alg:: OpenBLAS32MixedLUFactorization , A, b, u, Pl, Pr,
306
- maxiters:: Int , abstol, reltol, verbose:: Bool ,
306
+ maxiters:: Int , abstol, reltol, verbose:: LinearVerbosity ,
307
307
assumptions:: OperatorAssumptions )
308
308
# Pre-allocate appropriate 32-bit arrays based on input type
309
309
m, n = size (A)
0 commit comments