Skip to content

Commit 8ca8ea6

Browse files
committed
Reset MPI settings for release
1 parent 6d1b34b commit 8ca8ea6

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

mpi/mpi_workarounds.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
/* Use standard definitions in MPI 2.2. */
1919
#else
2020
/* Backup version for non-2.2-compliant MPI implementations. */
21-
// #error "Your MPI implementation is not compliant with the MPI 2.2 standard; please comment out this line in mpi_workarounds.h and ensure that the type definitions after it are correct."
21+
#error "Your MPI implementation is not compliant with the MPI 2.2 standard; please comment out this line in mpi_workarounds.h and ensure that the type definitions after it are correct."
2222

2323
#define FIND_MPI_INT_TYPE(t) (sizeof(t) == sizeof(signed char) ? MPI_SIGNED_CHAR : sizeof(t) == sizeof(short) ? MPI_SHORT : sizeof(t) == sizeof(int) ? MPI_INT : sizeof(t) == sizeof(long) ? MPI_LONG : sizeof(t) == sizeof(long long) ? MPI_LONG_LONG : MPI_DATATYPE_NULL)
2424
#define FIND_MPI_UINT_TYPE(t) (sizeof(t) == sizeof(unsigned char) ? MPI_UNSIGNED_CHAR : sizeof(t) == sizeof(unsigned short) ? MPI_UNSIGNED_SHORT : sizeof(t) == sizeof(unsigned int) ? MPI_UNSIGNED : sizeof(t) == sizeof(unsigned long) ? MPI_UNSIGNED_LONG : sizeof(t) == sizeof(unsigned long long) ? MPI_UNSIGNED_LONG_LONG : MPI_DATATYPE_NULL)
@@ -33,8 +33,8 @@
3333
/* If you have problems with one-sided operations (such as crashes in the
3434
* result validator), you can switch to an emulation of MPI-2 one-sided
3535
* operations: */
36-
/* #undef EMULATE_ONE_SIDED */
37-
#define EMULATE_ONE_SIDED
36+
#undef EMULATE_ONE_SIDED
37+
/* #define EMULATE_ONE_SIDED */
3838

3939
/* End of user settings ----------------------------------- */
4040

0 commit comments

Comments
 (0)