Skip to content

Commit

Permalink
reenable some tests
Browse files Browse the repository at this point in the history
  • Loading branch information
lkdvos committed Nov 13, 2024
1 parent 819b9bd commit e763ad4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions NDTensors/src/lib/BlockSparseArrays/test/svd_tests.jl
Original file line number Diff line number Diff line change
Expand Up @@ -80,12 +80,12 @@ end
a = BlockDiagonal([rand(T, i, j) for (i, j) in zip(m, n)])
usv = svd(a)
# TODO: `BlockDiagonal * Adjoint` errors
# test_svd(a, usv)
test_svd(a, usv)
@test usv.U isa BlockDiagonal
@test usv.Vt isa BlockDiagonal
@test usv.S isa BlockVector

# usv2 = tsvd(a)
usv2 = tsvd(a)
test_svd(a, usv2)
@test usv.U isa BlockDiagonal
@test usv.Vt isa BlockDiagonal
Expand Down

0 comments on commit e763ad4

Please sign in to comment.