use torch.testing.assertclose instead to get more details about error in cis (#35659)
* use torch.testing.assertclose instead to get more details about error in cis * fix * style * test_all * revert for I bert * fixes and updates * more image processing fixes * more image processors * fix mamba and co * style * less strick * ok I won't be strict * skip and be done * up
This commit is contained in:
@@ -589,4 +589,4 @@ class GPTBigCodeMQATest(unittest.TestCase):
|
||||
attention_mqa_result = attention_mqa(hidden_states)[0]
|
||||
|
||||
# CHECK THAT ALL OUTPUTS ARE THE SAME
|
||||
self.assertTrue(torch.allclose(attention_mha_result, attention_mqa_result, atol=1e-5))
|
||||
torch.testing.assert_close(attention_mha_result, attention_mqa_result, rtol=1e-5, atol=1e-5)
|
||||
|
||||
Reference in New Issue
Block a user