You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/interface/decompositions.jl
+13Lines changed: 13 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -150,3 +150,16 @@ Algorithm type to denote the CUSOLVER driver for computing the singular value de
150
150
a general matrix using the Jacobi algorithm.
151
151
"""
152
152
@algdef CUSOLVER_Jacobi
153
+
154
+
"""
155
+
CUSOLVER_Randomized(; p, niters)
156
+
157
+
Algorithm type to denote the CUSOLVER driver for computing the singular value decomposition of
158
+
a general matrix using the randomized SVD algorithm.
159
+
160
+
!!! note
161
+
Randomized SVD cannot compute all singular values of the input matrix `A`, only the first `k` where
162
+
`k < min(m, n)`. The remainder are used for oversampling. See the [CUSOLVER documentation](https://docs.nvidia.com/cuda/cusolver/index.html#cusolverdnxgesvdr)
0 commit comments