Skip to content

Commit

Permalink
Removing redundant parameter
Browse files Browse the repository at this point in the history
  • Loading branch information
evelyne-ringoot committed Mar 9, 2023
1 parent 28d252e commit 48e465f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/host/linalg.jl
Original file line number Diff line number Diff line change
Expand Up @@ -534,7 +534,7 @@ end
#getproperty for QR
import LinearAlgebra:QRPackedQ

function LinearAlgebra.getproperty(F::QR{T,<:AnyGPUMatrix{T},<:AnyGPUVector{T}}, d::Symbol) where {T}
function LinearAlgebra.getproperty(F::QR{T,<:AnyGPUMatrix{T}}, d::Symbol) where {T}
m, n = size(F)
if d === :R
return triu!(view(getfield(F, :factors),1:min(m,n), 1:n))
Expand Down

0 comments on commit 48e465f

Please sign in to comment.