Skip to content

Commit

Permalink
Fix test
Browse files Browse the repository at this point in the history
  • Loading branch information
nathanaelbosch committed Feb 18, 2024
1 parent 54c62ec commit 7d7bf1a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/core/kronecker.jl
Original file line number Diff line number Diff line change
Expand Up @@ -79,8 +79,8 @@ q = 2
_K1 = copy(K1)
@test mul!(_K1, α, K1) == α * K1
@test mul!(_K1, K1, α) == α * K1
@test _matmul!(_K1, K1, α) == α * K1
@test _matmul!(_K1, α, K1) == α * K1
@test PNDE._matmul!(_K1, K1, α) == α * K1
@test PNDE._matmul!(_K1, α, K1) == α * K1

# In-place Matrix-Matrix Multiplication
β = -0.5
Expand Down

0 comments on commit 7d7bf1a

Please sign in to comment.