Skip to content

Commit

Permalink
Accuracy bug only in CI. Higher tolerance
Browse files Browse the repository at this point in the history
  • Loading branch information
gmeanti committed Jan 6, 2024
1 parent 454b21a commit ff08a78
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion falkon/tests/test_kernels.py
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ def w() -> torch.Tensor:

@pytest.fixture(scope="module")
def rtol():
return {np.float64: 1e-10, torch.float64: 1e-10, np.float32: 1e-4, torch.float32: 1e-4}
return {np.float64: 1e-8, torch.float64: 1e-8, np.float32: 1e-4, torch.float32: 1e-4}


@pytest.fixture(scope="module")
Expand Down

0 comments on commit ff08a78

Please sign in to comment.