Arwa

Results 2 comments of Arwa

same issue, did anyone figure how to solve this?

@Ryan-ZL-Lin You can adjust the **relative tolerance** for less strict comparison. the default value is 1e-05 in PyTorch 2.2 This snippet will output `True` `torch.allclose(xbow, xbow2, rtol= 1e-04) # default...