Skip to content

Commit d3cae56

Browse files
Update LinearSolve.jl
1 parent 062bc54 commit d3cae56

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

src/LinearSolve.jl

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -176,6 +176,11 @@ include("adjoint.jl")
176176
end
177177
end
178178

179+
@inline function _notsuccessful(F::LinearAlgebra.QRCompactWY{T, A}) where {T,A<:GPUArraysCore.AnyGPUArray}
180+
hasmethod(LinearAlgebra.issuccess, (typeof(F),)) ?
181+
!LinearAlgebra.issuccess(F) : false
182+
end
183+
179184
@inline function _notsuccessful(F::LinearAlgebra.QRCompactWY)
180185
(m, n) = size(F)
181186
U = view(F.factors, 1:min(m, n), 1:n)

0 commit comments

Comments
 (0)