Skip to content

Commit

Permalink
reduce operator test requirements
Browse files Browse the repository at this point in the history
  • Loading branch information
JakobEliasWagner committed Aug 16, 2024
1 parent cde2334 commit dcbbfcb
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion tests/operators/test_deep_dot_operator.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,4 +37,4 @@ def test_convergence():

# Check solution
x, u = dataset.x, dataset.u
assert MSELoss()(operator, x, u, x, u) < 1e-3
assert MSELoss()(operator, x, u, x, u) < 5e-3
2 changes: 1 addition & 1 deletion tests/operators/test_deep_root_operator.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,4 +37,4 @@ def test_convergence():

# Check solution
x, u = dataset.x, dataset.u
assert MSELoss()(operator, x, u, x, u) < 1e-3
assert MSELoss()(operator, x, u, x, u) < 5e-3
2 changes: 1 addition & 1 deletion tests/operators/test_mean_stack_operator.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,4 +37,4 @@ def test_convergence():

# Check solution
x, u = dataset.x, dataset.u
assert MSELoss()(operator, x, u, x, u) < 1e-3
assert MSELoss()(operator, x, u, x, u) < 5e-3

0 comments on commit dcbbfcb

Please sign in to comment.