Skip to content

Commit

Permalink
[sparse] Increase tol of test for Intel MKL
Browse files Browse the repository at this point in the history
  • Loading branch information
cpmech committed Mar 7, 2024
1 parent 9d20f46 commit 69c25f6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion russell_sparse/src/samples.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1536,7 +1536,7 @@ mod tests {
let mut ai = Matrix::new(5, 5);
let correct_det = mat_inverse(&mut ai, &a).unwrap();
let (coo, csc, csr, det) = Samples::lower_symmetric_5x5();
approx_eq(det, correct_det, 1e-13);
approx_eq(det, correct_det, 1e-12);
mat_approx_eq(&coo.as_dense(), correct, 1e-15);
mat_approx_eq(&csc.as_dense(), correct, 1e-15);
mat_approx_eq(&csr.as_dense(), correct, 1e-15);
Expand Down

0 comments on commit 69c25f6

Please sign in to comment.