Skip to content

Commit

Permalink
make ops generic over dimension
Browse files Browse the repository at this point in the history
  • Loading branch information
sarah-quinones committed Oct 10, 2024
1 parent 7bef3f4 commit 416fafe
Show file tree
Hide file tree
Showing 2 changed files with 1,916 additions and 1,124 deletions.
9 changes: 3 additions & 6 deletions faer/src/linalg/cholesky/ldlt/factor.rs
Original file line number Diff line number Diff line change
Expand Up @@ -401,12 +401,9 @@ mod tests {
L[(i, j)] = c64::ZERO;
}
}
__dbg!(
L.rb().as_dyn_stride().as_dyn()
* D.rb().as_dyn_cols().as_diagonal()
* L.rb().as_dyn_stride().as_dyn().adjoint()
- &A.as_dyn_stride().as_dyn()
);
let L = L.rb().as_dyn_stride();

__dbg!(L.rb() * D.rb().as_diagonal() * L.adjoint() - &A);
}
}
}
Loading

0 comments on commit 416fafe

Please sign in to comment.