Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add lmul! and rmul! for Bidiagonal #51777

Merged
merged 7 commits into from
Nov 19, 2023
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
add more tests
  • Loading branch information
dkarrasch committed Nov 18, 2023
commit 63b1009d674b2ae7ae77b3cac676a5bd6115581c
3 changes: 3 additions & 0 deletions stdlib/LinearAlgebra/test/bidiag.jl
Original file line number Diff line number Diff line change
Expand Up @@ -439,6 +439,9 @@ Random.seed!(1)
for op in (+, -, *)
@test Array(op(T, T2)) ≈ op(Tfull, Tfull2)
end
A = kron(T.dv, T.dv')
@test T * A ≈ lmul!(T, copy(A))
@test A * T ≈ rmul!(copy(A), T)
end
# test pass-through of mul! for SymTridiagonal*Bidiagonal
TriSym = SymTridiagonal(T.dv, T.ev)
Expand Down