Skip to content

Commit

Permalink
Undo change to tolerance in quantized_matmul_neg test
Browse files Browse the repository at this point in the history
  • Loading branch information
EricLBuehler committed Mar 3, 2025
1 parent 06335f8 commit a977179
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion candle-core/tests/quantized_tests.rs
Original file line number Diff line number Diff line change
Expand Up @@ -173,7 +173,7 @@ fn quantized_matmul_neg(device: &Device) -> Result<()> {
if device.is_cuda() {
assert!(diff < 0.1);
} else {
assert!(diff < 0.96);
assert_eq!(diff, 0.);
}
Ok(())
}
Expand Down

0 comments on commit a977179

Please sign in to comment.