We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9db56ec commit c596edbCopy full SHA for c596edb
1 file changed
array_api_tests/test_fft.py
@@ -57,6 +57,9 @@ def draw_s_axes_norm_kwargs(x: Array, data: st.DataObject, *, size_gt_1=False) -
57
s_strat = st.none() | s_strat
58
s = data.draw(s_strat, label="s")
59
60
+ # Using `axes is None and s is not None` is disallowed by the spec
61
+ assume(axes is not None or s is None)
62
+
63
norm = data.draw(st.sampled_from(["backward", "ortho", "forward"]), label="norm")
64
kwargs = data.draw(
65
hh.specified_kwargs(
0 commit comments