Skip to content

Commit b6f3b18

Browse files
author
Katharine Hyatt
committed
Test both native and GLA
1 parent 165aef2 commit b6f3b18

2 files changed

Lines changed: 4 additions & 4 deletions

File tree

test/lq.jl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -52,8 +52,8 @@ for T in (BLASFloats..., GenericFloats...), n in (37, m, 63)
5252
TestSuite.test_lq_algs(T, (m, n), LAPACK_LQ_ALGS)
5353
elseif T GenericFloats
5454
TestSuite.test_lq(T, (m, n); test_pivoted = false, test_blocksize = false)
55-
NATIVE_LQ_ALGS = (Native_HouseholderLQ(),)
56-
TestSuite.test_lq_algs(T, (m, n), NATIVE_LQ_ALGS)
55+
GENERIC_LQ_ALGS = (Native_HouseholderLQ(), GLA_HouseholderLQ())
56+
TestSuite.test_lq_algs(T, (m, n), GENERIC_LQ_ALGS)
5757
end
5858
if m == n
5959
AT = Diagonal{T, Vector{T}}

test/qr.jl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -51,8 +51,8 @@ for T in (BLASFloats..., GenericFloats...), n in (37, m, 63)
5151
TestSuite.test_qr_algs(T, (m, n), LAPACK_QR_ALGS)
5252
elseif T GenericFloats
5353
TestSuite.test_qr(T, (m, n); test_pivoted = false, test_blocksize = false)
54-
NATIVE_QR_ALGS = (Native_HouseholderQR(),)
55-
TestSuite.test_qr_algs(T, (m, n), NATIVE_QR_ALGS)
54+
GENERIC_QR_ALGS = (Native_HouseholderQR(), GLA_HouseholderQR())
55+
TestSuite.test_qr_algs(T, (m, n), GENERIC_QR_ALGS)
5656
end
5757
if m == n
5858
AT = Diagonal{T, Vector{T}}

0 commit comments

Comments
 (0)