Skip to content

Commit

Permalink
Simplify MatMul
Browse files Browse the repository at this point in the history
  • Loading branch information
gavinleroy committed Apr 30, 2024
1 parent 04eb21d commit c1200f0
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion crates/argus_cli/tests/workspaces/nalgebra/src/mat_mul.rs
Original file line number Diff line number Diff line change
Expand Up @@ -11,5 +11,5 @@ fn test() {
let m1 = CsrMatrix::from(&coo1);
let m2 = CsrMatrix::from(&coo2);

&m1 * m2;
m1 * m2;
}
Original file line number Diff line number Diff line change
Expand Up @@ -7,5 +7,5 @@ fn test() {
let m1 = CsrMatrix::from(&coo1);
let m2 = CsrMatrix::from(&coo2);

std::ops::Mul::mul(&m1, &m2);
std::ops::Mul::mul(m1, m2);
}

0 comments on commit c1200f0

Please sign in to comment.