From a9771797ca3a06c613db221bb477645386d900af Mon Sep 17 00:00:00 2001 From: Eric Buehler Date: Mon, 3 Mar 2025 17:32:54 -0500 Subject: [PATCH] Undo change to tolerance in quantized_matmul_neg test --- candle-core/tests/quantized_tests.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/candle-core/tests/quantized_tests.rs b/candle-core/tests/quantized_tests.rs index 453c0e86b..ae0ddebdb 100644 --- a/candle-core/tests/quantized_tests.rs +++ b/candle-core/tests/quantized_tests.rs @@ -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(()) }