Skip to content

Commit 48e465f

Browse files
Removing redundant parameter
1 parent 28d252e commit 48e465f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/host/linalg.jl

+1-1
Original file line numberDiff line numberDiff line change
@@ -534,7 +534,7 @@ end
534534
#getproperty for QR
535535
import LinearAlgebra:QRPackedQ
536536

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

0 commit comments

Comments
 (0)