Skip to content

Commit 8d793fc

Browse files
committed
Fix for missing numpy data types on some platforms
1 parent c468fb7 commit 8d793fc

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

pySDC/helpers/fieldsIO.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -69,8 +69,8 @@ class MPI:
6969
DTYPES = {
7070
0: np.float64, # double precision
7171
1: np.complex128,
72-
2: np.float128, # quadruple precision
73-
3: np.complex256,
72+
2: np.longdouble, # quadruple precision
73+
3: np.clongdouble,
7474
4: np.float32, # single precision
7575
5: np.complex64,
7676
}

0 commit comments

Comments
 (0)