Skip to content

Commit dea2c79

Browse files
committed
Fix tests
1 parent 41c56a0 commit dea2c79

File tree

1 file changed

+0
-22
lines changed

1 file changed

+0
-22
lines changed

test/test_factorizations.jl

Lines changed: 0 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -474,25 +474,3 @@ end
474474
@test sort(diagview(D[Block(1, 1)]); by=abs, rev=true) D1[1:1]
475475
@test sort(diagview(D[Block(2, 2)]); by=abs, rev=true) D2[1:2]
476476
end
477-
478-
@testset "Abstract block type" begin
479-
arrayt = Array
480-
elt = Float32
481-
dev = adapt(arrayt)
482-
483-
a = BlockSparseMatrix{elt,AbstractMatrix{elt}}(undef, ([2, 3], [2, 3]))
484-
a[Block(1, 1)] = dev(randn(elt, 2, 2))
485-
a[Block(2, 2)] = dev(randn(elt, 3, 3))
486-
@test_broken eig_full(a)
487-
@test_broken eigh_full(a)
488-
@test_broken svd_compact(a)
489-
@test_broken svd_full(a)
490-
@test_broken left_orth(a)
491-
@test_broken right_orth(a)
492-
@test_broken left_polar(a)
493-
@test_broken right_polar(a)
494-
@test_broken qr_compact(a)
495-
@test_broken qr_full(a)
496-
@test_broken lq_compact(a)
497-
@test_broken lq_full(a)
498-
end

0 commit comments

Comments
 (0)