Skip to content
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

Fix dtype check in simple Python interface #559

Merged
merged 1 commit into from
Sep 11, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions python/finufft/finufft/_interfaces.py
Original file line number Diff line number Diff line change
Expand Up @@ -513,9 +513,9 @@ def destroy(plan):
### invoke guru interface, this function is used for simple interfaces
def invoke_guru(dim,tp,x,y,z,c,s,t,u,f,isign,eps,n_modes,**kwargs):
# infer dtype from x
if x.dtype is np.dtype('float64'):
if x.dtype == np.dtype('float64'):
pdtype = 'complex128'
elif x.dtype is np.dtype('float32'):
elif x.dtype == np.dtype('float32'):
pdtype = 'complex64'
else:
raise RuntimeError('FINUFFT x dtype should be float64 for double precision or float32 for single precision')
Expand Down
Loading