Skip to content

Commit 00c578c

Browse files
committed
Don't test Jacobi on old Julia
1 parent f91f42a commit 00c578c

1 file changed

Lines changed: 4 additions & 2 deletions

File tree

test/polar.jl

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,8 +33,10 @@ for T in (BLASFloats..., GenericFloats...), n in (37, m, 63)
3333
if T BLASFloats
3434
LAPACK_POLAR_ALGS = (PolarViaSVD.((LAPACK_QRIteration(), LAPACK_Bisection(), LAPACK_DivideAndConquer()))..., PolarNewton())
3535
TestSuite.test_polar(T, (m, n), LAPACK_POLAR_ALGS)
36-
LAPACK_JACOBI = (PolarViaSVD(LAPACK_Jacobi()),)
37-
TestSuite.test_polar(T, (m, n), LAPACK_JACOBI; test_right = false)
36+
if LinearAlgebra.LAPACK.version() v"3.12.0"
37+
LAPACK_JACOBI = (PolarViaSVD(LAPACK_Jacobi()),)
38+
TestSuite.test_polar(T, (m, n), LAPACK_JACOBI; test_right = false)
39+
end
3840
elseif T GenericFloats
3941
GLA_POLAR_ALGS = (PolarViaSVD.((GLA_QRIteration(),))..., PolarNewton())
4042
TestSuite.test_polar(T, (m, n), GLA_POLAR_ALGS)

0 commit comments

Comments
 (0)