-
Notifications
You must be signed in to change notification settings - Fork 45
New issue
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
test_fft.py
#196
test_fft.py
#196
Conversation
And use it in `test_fft.py`
And rudimentary support for `2*(m-1)` size rules
array_api_tests/pytest_helpers.py
Outdated
@@ -470,3 +484,18 @@ def assert_array_elements( | |||
assert xp.all( | |||
out == expected | |||
), f"{out_repr} not as expected {f_func}\n{out_repr}={out!r}\n{expected=}" | |||
|
|||
|
|||
def _make_wrapped_assert_helper(assert_helper: Callable) -> Callable: |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
TODO: remove this now I've manually added __tracebackhide__
@honno how far off is this from getting merged you think? |
I'll just merge it, the tests are very thorough now (except there's no tests shift/freq which I can do in a follow-up PR). Some hacks and code I'd like to remove/refactor but good to just get this in—it doesn't seem to break anything! Current failures are the same on |
WIP PR for FFT tests. Needs some refactoring and some more shape asserts. freq/shift tests can come in a seperate PR.
TODO: