We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
assert abs((finufft_out - against_torch).sum()) / (N**3) == pytest.approx( 0, abs=1e-6
sum is inside the abs, and we are potentially dividing by 1 billion, both of these make the tests very weak with no guarantee of correctness
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
sum is inside the abs, and we are potentially dividing by 1 billion, both of these make the tests very weak with no guarantee of correctness
The text was updated successfully, but these errors were encountered: