We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 352a0bb commit b88c234Copy full SHA for b88c234
1 file changed
src/pnetcdf/_utils.pyx
@@ -44,17 +44,17 @@ _nptonctype = {'S1' : NC_CHAR_C,
44
'f4' : NC_FLOAT_C,
45
'f8' : NC_DOUBLE_C}
46
47
-_nptompitype = {'S1' : MPI_CHAR,
48
- 'i1' : MPI_BYTE,
49
- 'u1' : MPI_UNSIGNED_CHAR,
50
- 'i2' : MPI_SHORT,
51
- 'u2' : MPI_UNSIGNED_SHORT,
52
- 'i4' : MPI_INT,
53
- 'u4' : MPI_UNSIGNED,
54
- 'i8' : MPI_LONG_LONG,
55
- 'u8' : MPI_UNSIGNED_LONG_LONG,
56
- 'f4' : MPI_FLOAT,
57
- 'f8' : MPI_DOUBLE}
+_nptompitype = {'S1' : MPI.CHAR,
+ 'i1' : MPI.BYTE,
+ 'u1' : MPI.UNSIGNED_CHAR,
+ 'i2' : MPI.SHORT,
+ 'u2' : MPI.UNSIGNED_SHORT,
+ 'i4' : MPI.INT,
+ 'u4' : MPI.UNSIGNED,
+ 'i8' : MPI.LONG_LONG,
+ 'u8' : MPI.UNSIGNED_LONG_LONG,
+ 'f4' : MPI.FLOAT,
+ 'f8' : MPI.DOUBLE}
58
59
60
"""_nptompitype = {'S1' : MPI_CHAR,
0 commit comments