Skip to content
Snippets Groups Projects
Commit af0d0d5b authored by Jean-Matthieu Etancelin's avatar Jean-Matthieu Etancelin
Browse files

Fix bug from previous commit

parent e66e6289
No related branches found
No related tags found
No related merge requests found
...@@ -18,13 +18,13 @@ else: ...@@ -18,13 +18,13 @@ else:
PI = math.pi PI = math.pi
# Set default type for real and integer numbers # Set default type for real and integer numbers
PARMES_REAL = np.float32 PARMES_REAL = np.float64
# type for array indices # type for array indices
PARMES_INDEX = np.uint32 PARMES_INDEX = np.uint32
# type for integers # type for integers
PARMES_INTEGER = np.int32 PARMES_INTEGER = np.int64
# float type for MPI messages # float type for MPI messages
PARMES_MPI_REAL = MPI.FLOAT PARMES_MPI_REAL = MPI.DOUBLE
## default array layout (fortran or C convention) ## default array layout (fortran or C convention)
ORDER = 'F' ORDER = 'F'
## Default array layout for MPI ## Default array layout for MPI
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment