We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0b65baf commit be42a79Copy full SHA for be42a79
1 file changed
test/test_tools.py
@@ -90,7 +90,7 @@ def test_fft(actx_factory, size):
90
out = fft(inp)
91
92
fft_func = loopy_fft(inp.shape, inverse=False, complex_dtype=inp.dtype.type)
93
- evt, (out_dev,) = fft_func(actx, y=inp_dev)
+ out_dev = actx.call_loopy(fft_func, y=inp_dev)["x"]
94
95
assert np.allclose(actx.to_numpy(out_dev), out)
96
0 commit comments