Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion test/experimental/nn/symmetry/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ def get_rtol_atol(dtype: torch.dtype, scale: float = 1.0) -> tuple[float, float]
elif dtype == torch.float32:
# float32 needs looser tolerances for equivariance tests with
# accumulated numerical operations (matrix multiplications, rotations)
rtol, atol = 1e-4, 1e-4
rtol, atol = 1e-4, 5e-3
Comment thread
laserkelvin marked this conversation as resolved.
elif dtype == torch.float64:
# float64 needs slightly looser tolerances for accumulated numerical
# operations in Wigner D-matrix and rotation calculations
Expand Down
Loading