Skip to content

Commit daf102a

Browse files
hotfix for tests
1 parent a504665 commit daf102a

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Project.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name = "LinearSolve"
22
uuid = "7ed4a6bd-45f5-4d41-b270-4a48e9bafcae"
33
authors = ["SciML"]
4-
version = "1.2.1"
4+
version = "1.2.2"
55

66
[deps]
77
ArrayInterface = "4fba245c-0d91-5ea0-9b3e-6abc04ee57a9"

src/factorization.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -162,7 +162,7 @@ function do_factorization(alg::QRFactorization, A, b, u)
162162
A = A.A
163163
end
164164
if alg.inplace
165-
fact = qr!(A, alg.pivot; blocksize = alg.blocksize)
165+
fact = qr!(A, alg.pivot)
166166
else
167167
fact = qr(A) # CUDA.jl does not allow other args!
168168
end

0 commit comments

Comments
 (0)