Skip to content

Commit 0a4ff6e

Browse files
committed
Typo
1 parent 4478cfd commit 0a4ff6e

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

test/amd/polar.jl

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,9 @@ using AMDGPU
1111
m = 54
1212
@testset "size ($m, $n)" for n in (37, m)
1313
k = min(m, n)
14-
svd_algs = (rocSOLVER_QRIteration(), rocSOLVER_Jacobi())
14+
svd_algs = (ROCSOLVER_QRIteration(), ROCSOLVER_Jacobi())
1515
@testset "algorithm $svd_alg" for svd_alg in svd_algs
16-
n < m && svd_alg isa rocSOLVER_QRIteration && continue
16+
n < m && svd_alg isa ROCSOLVER_QRIteration && continue
1717
A = ROCArray(randn(rng, T, m, n))
1818
alg = PolarViaSVD(svd_alg)
1919
W, P = left_polar(A; alg)
@@ -39,9 +39,9 @@ end
3939
n = 54
4040
@testset "size ($m, $n)" for m in (37, n)
4141
k = min(m, n)
42-
svd_algs = (rocSOLVER_QRIteration(), rocSOLVER_Jacobi())
42+
svd_algs = (ROCSOLVER_QRIteration(), ROCSOLVER_Jacobi())
4343
@testset "algorithm $svd_alg" for svd_alg in svd_algs
44-
n > m && svd_alg isa rocSOLVER_QRIteration && continue
44+
n > m && svd_alg isa ROCSOLVER_QRIteration && continue
4545
A = ROCArray(randn(rng, T, m, n))
4646
alg = PolarViaSVD(svd_alg)
4747
P, Wᴴ = right_polar(A; alg)

0 commit comments

Comments
 (0)