diff --git a/frontends/pytorch/python/torch_mlir/torchscript/e2e_test/reporting.py b/frontends/pytorch/python/torch_mlir/torchscript/e2e_test/reporting.py index 4fe790a40..d2ec1b6c5 100644 --- a/frontends/pytorch/python/torch_mlir/torchscript/e2e_test/reporting.py +++ b/frontends/pytorch/python/torch_mlir/torchscript/e2e_test/reporting.py @@ -65,7 +65,7 @@ class ValueReport: @property def failed(self): - return not torch.allclose(self.value, self.golden_value, rtol=1e-03, atol=1e-08) + return not torch.allclose(self.value, self.golden_value, rtol=1e-03, atol=1e-07) def error_str(self): assert self.failed