Skip to content

Commit

Permalink
FIX: add back if condition checking for float64 (removed by accident)
Browse files Browse the repository at this point in the history
  • Loading branch information
NaderAlAwar committed Oct 15, 2024
1 parent d17ad36 commit 8f21c3f
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions kokkos/utility.py
Original file line number Diff line number Diff line change
Expand Up @@ -99,6 +99,8 @@ def read_dtype(_dtype):
return lib.uint64
elif _dtype == np.float32:
return lib.float32
elif _dtype == np.float64:
return lib.float64
elif _dtype == np.complex64:
return lib.complex_float32_dtype
elif _dtype == np.complex128:
Expand Down

0 comments on commit 8f21c3f

Please sign in to comment.