Skip to content

Commit 62ccf33

Browse files
author
Will Kimmerer
committed
namespace ColumnNorm
1 parent 5d02585 commit 62ccf33

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/factorization.jl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -401,7 +401,7 @@ function init_cacheval(alg::FastQRFactorization{NoPivot}, A, b, u, Pl, Pr,
401401
return WorkspaceAndFactors(ws, LinearAlgebra.QRCompactWY(LAPACK.geqrt!(ws, A)...))
402402
end
403403

404-
function init_cacheval(::FastQRFactorization{ColumnNorm}, A, b, u, Pl, Pr,
404+
function init_cacheval(::FastQRFactorization{LinearAlgebra.ColumnNorm}, A, b, u, Pl, Pr,
405405
maxiters, abstol, reltol, verbose)
406406
ws = QRpWs(A)
407407
return WorkspaceAndFactors(ws, LinearAlgebra.QRPivoted(LAPACK.geqp3!(ws, A)...))
@@ -417,7 +417,7 @@ function SciMLBase.solve(cache::LinearCache, alg::FastQRFactorization{P}) where
417417
if P === NoPivot
418418
@set! ws_and_fact.factors = LinearAlgebra.QRCompactWY(LAPACK.geqrt!(ws_and_fact.workspace,
419419
A)...)
420-
elseif P === ColumnNorm
420+
elseif P === LinearAlgebra.ColumnNorm
421421
@set! ws_and_fact.factors = LinearAlgebra.QRPivoted(LAPACK.geqp3!(ws_and_fact.workspace,
422422
A)...)
423423
else

0 commit comments

Comments
 (0)