Skip to content

Commit fbb2a9a

Browse files
Fix potential x86 issue
1 parent 42e8ac4 commit fbb2a9a

File tree

1 file changed

+1
-7
lines changed

1 file changed

+1
-7
lines changed

ext/LinearSolveSparseArraysExt.jl

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -360,13 +360,7 @@ function LinearSolve.init_cacheval(
360360
nothing
361361
end
362362

363-
function LinearSolve.init_cacheval(alg::QRFactorization, A::SparseMatrixCSC{Float64, Int}, b, u, Pl, Pr,
364-
maxiters::Int, abstol, reltol, verbose::Bool,
365-
assumptions::OperatorAssumptions)
366-
LinearSolve.ArrayInterface.qr_instance(convert(AbstractMatrix, A), alg.pivot)
367-
end
368-
369-
function LinearSolve.init_cacheval(alg::QRFactorization, A::SparseMatrixCSC{Float64, Int32}, b, u, Pl, Pr,
363+
function LinearSolve.init_cacheval(alg::QRFactorization, A::SparseMatrixCSC{Float64, <:Integer}, b, u, Pl, Pr,
370364
maxiters::Int, abstol, reltol, verbose::Bool,
371365
assumptions::OperatorAssumptions)
372366
LinearSolve.ArrayInterface.qr_instance(convert(AbstractMatrix, A), alg.pivot)

0 commit comments

Comments
 (0)