Skip to content

Commit

Permalink
cuda+py: update py interface to deal with 64-bit M
Browse files Browse the repository at this point in the history
  • Loading branch information
janden committed May 31, 2024
1 parent 4e76106 commit dc74e9b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions python/cufinufft/cufinufft/_cufinufft.py
Original file line number Diff line number Diff line change
Expand Up @@ -101,13 +101,13 @@ class NufftOpts(ctypes.Structure):

_set_pts = lib.cufinufft_setpts
_set_pts.argtypes = [
c_void_p, c_int, c_void_p, c_void_p, c_void_p, ctypes.c_int, c_double_p,
c_void_p, c_int64, c_void_p, c_void_p, c_void_p, ctypes.c_int, c_double_p,
c_double_p, c_double_p]
_set_pts.restype = c_int

_set_ptsf = lib.cufinufftf_setpts
_set_ptsf.argtypes = [
c_void_p, c_int, c_void_p, c_void_p, c_void_p, ctypes.c_int, c_float_p,
c_void_p, c_int64, c_void_p, c_void_p, c_void_p, ctypes.c_int, c_float_p,
c_float_p, c_float_p]
_set_ptsf.restype = c_int

Expand Down

0 comments on commit dc74e9b

Please sign in to comment.