@@ -18,7 +18,7 @@ for T in (BLASFloats..., GenericFloats...), n in (37, m, 63)
1818 TestSuite. seed_rng! (123 )
1919 if T ∈ BLASFloats
2020 if CUDA. functional ()
21- CUDA_LQ_ALGS = LQViaTransposedQR .(CUSOLVER_HouseholderLQ ( ; positive = false ), CUSOLVER_HouseholderLQ (; positive = true ))
21+ CUDA_LQ_ALGS = LQViaTransposedQR .(( CUSOLVER_HouseholderQR ( ; positive = false ), CUSOLVER_HouseholderQR (; positive = true ) ))
2222 TestSuite. test_lq (CuMatrix{T}, (m, n); test_pivoted = false , test_blocksize = false )
2323 TestSuite. test_lq_algs (CuMatrix{T}, (m, n), CUDA_LQ_ALGS)
2424 if n == m
@@ -27,9 +27,9 @@ for T in (BLASFloats..., GenericFloats...), n in (37, m, 63)
2727 end
2828 end
2929 if AMDGPU. functional ()
30- ROC_LQ_ALGS = LQViaTransposedQR .(ROCSOLVER_HouseholderLQ ( ; positive = false ), ROCSOLVER_HouseholderLQ (; positive = true ))
30+ ROC_LQ_ALGS = LQViaTransposedQR .(( ROCSOLVER_HouseholderQR ( ; positive = false ), ROCSOLVER_HouseholderQR (; positive = true ) ))
3131 TestSuite. test_lq (ROCMatrix{T}, (m, n); test_pivoted = false , test_blocksize = false )
32- TestSuite. test_lq_algs (ROCMatrix{T}, (m, n), CUDA_LQ_ALGS )
32+ TestSuite. test_lq_algs (ROCMatrix{T}, (m, n), ROC_LQ_ALGS )
3333 if n == m
3434 TestSuite. test_lq (Diagonal{T, ROCVector{T}}, m; test_pivoted = false , test_blocksize = false )
3535 TestSuite. test_lq_algs (Diagonal{T, ROCVector{T}}, m, (DiagonalAlgorithm (),))
0 commit comments