Skip to content

Commit

Permalink
WIP: kernel mmv tests failing, maybe too much precision required
Browse files Browse the repository at this point in the history
  • Loading branch information
gmeanti committed Oct 17, 2023
1 parent f88b9ba commit 38061eb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions falkon/tests/test_kernels.py
Original file line number Diff line number Diff line change
Expand Up @@ -73,12 +73,12 @@ def w() -> torch.Tensor:

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


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


@pytest.fixture(params=["single-sigma", "vec-sigma"], scope="class")
Expand Down

0 comments on commit 38061eb

Please sign in to comment.