Skip to content

Commit

Permalink
tests: fix bug in simple type 2 tests
Browse files Browse the repository at this point in the history
  • Loading branch information
janden committed Jul 17, 2023
1 parent da1a155 commit 24616a8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions python/cufinufft/tests/test_simple.py
Original file line number Diff line number Diff line change
Expand Up @@ -71,9 +71,9 @@ def test_simple_type2(dtype, shape, n_trans, M, tol, output_arg):

if output_arg:
c_gpu = gpuarray.GPUArray(n_trans + (M,), dtype=complex_dtype)
fun(*k_gpu, fk_gpu, out=c_gpu)
fun(*k_gpu, fk_gpu, eps=tol, out=c_gpu)
else:
c_gpu = fun(*k_gpu, fk_gpu)
c_gpu = fun(*k_gpu, fk_gpu, eps=tol)

c = c_gpu.get()

Expand Down

0 comments on commit 24616a8

Please sign in to comment.