Skip to content

Commit bb04fcc

Browse files
Katharine Hyattkshyatt
authored andcommitted
Support GenericFloats too
1 parent 276c001 commit bb04fcc

1 file changed

Lines changed: 2 additions & 4 deletions

File tree

test/orthnull.jl

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ using LinearAlgebra: LinearAlgebra, I, Diagonal
66
using CUDA, AMDGPU
77

88
BLASFloats = (Float32, Float64, ComplexF32, ComplexF64)
9-
GenericFloats = (Float16, BigFloat, Complex{BigFloat})
9+
GenericFloats = (BigFloat, Complex{BigFloat})
1010

1111
@isdefined(TestSuite) || include("testsuite/TestSuite.jl")
1212
using .TestSuite
@@ -29,9 +29,7 @@ for T in (BLASFloats..., GenericFloats...), n in (37, m, 63)
2929
end
3030
end
3131
if !is_buildkite
32-
if T BLASFloats # no qr_null or lq_null for GenericFloats
33-
TestSuite.test_orthnull(T, (m, n))
34-
end
32+
TestSuite.test_orthnull(T, (m, n))
3533
#AT = Diagonal{T, Vector{T}}
3634
#TestSuite.test_orthnull(AT, m) # not supported
3735
end

0 commit comments

Comments
 (0)