Skip to content

Commit 569fdc6

Browse files
Merge pull request #637 from SciML/ChrisRackauckas-patch-1
Test and fix 32-bit
2 parents 6370728 + fbb2a9a commit 569fdc6

File tree

2 files changed

+4
-7
lines changed

2 files changed

+4
-7
lines changed

.github/workflows/Tests.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,9 @@ jobs:
2727
- "1"
2828
- "lts"
2929
- "pre"
30+
arch:
31+
- x64
32+
- x86
3033
group:
3134
- "Core"
3235
- "DefaultsLoading"

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)