From daf102ae334f1b519c485db2e4117cb886e9db7c Mon Sep 17 00:00:00 2001 From: Chris Rackauckas Date: Tue, 28 Dec 2021 20:43:15 -0500 Subject: [PATCH] hotfix for tests --- Project.toml | 2 +- src/factorization.jl | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Project.toml b/Project.toml index 6b6846467..5326c20b7 100644 --- a/Project.toml +++ b/Project.toml @@ -1,7 +1,7 @@ name = "LinearSolve" uuid = "7ed4a6bd-45f5-4d41-b270-4a48e9bafcae" authors = ["SciML"] -version = "1.2.1" +version = "1.2.2" [deps] ArrayInterface = "4fba245c-0d91-5ea0-9b3e-6abc04ee57a9" diff --git a/src/factorization.jl b/src/factorization.jl index adeed6da7..8a8a1bc8d 100644 --- a/src/factorization.jl +++ b/src/factorization.jl @@ -162,7 +162,7 @@ function do_factorization(alg::QRFactorization, A, b, u) A = A.A end if alg.inplace - fact = qr!(A, alg.pivot; blocksize = alg.blocksize) + fact = qr!(A, alg.pivot) else fact = qr(A) # CUDA.jl does not allow other args! end