Jeff Squyres
35438ae9b5
mpi/finalized: revamp INITIALIZED/FINALIZED
...
Per MPI-3.1:8.7.1 p361:11-13, it's valid for MPI_FINALIZED to be
invoked during an attribute destruction callback (e.g., during the
destruction of keyvals on MPI_COMM_SELF during the very beginning of
MPI_FINALIZE). In such cases, MPI_FINALIZED must return "false".
Prior to this commit, we hung in FINALIZED if it were invoked during
a COMM_SELF attribute destruction callback in FINALIZE. See
https://github.com/open-mpi/ompi/issues/5084 .
This commit converts the MPI_INITIALIZED / MPI_FINALIZED
infrastructure to use a single enum (ompi_mpi_state, set atomically)
to represent the state of MPI:
- not initialized
- init started
- init completed
- finalize started
- finalize past COMM_SELF destruction
- finalize completed
The "finalize past COMM_SELF destruction" state is what allows us to
return "false" from MPI_FINALIZED before COMM_SELF has been fully
destroyed / all attribute callbacks have been invoked.
Since this state is checked at nearly every MPI API call (to see if
we're outside of the INIT/FINALIZE epoch), care was taken to use
atomics to *set* the ompi_mpi_state value in ompi_mpi_init() and
ompi_mpi_finalize(), but performance-critical code paths can simply
read the variable without needing to use a slow call to an
opal_atomic_*() function.
Thanks to @AndrewGaspar for reporting the issue.
Signed-off-by: Jeff Squyres <jsquyres@cisco.com>
2018-06-01 13:36:29 -07:00
..
2018-05-31 09:44:19 -06:00
2016-11-22 15:03:20 -08:00
2017-10-03 16:48:50 -04:00
2017-07-12 10:27:45 +09:00
2017-07-12 10:27:45 +09:00
2016-11-22 15:03:20 -08:00
2016-11-22 15:03:20 -08:00
2017-02-27 11:54:17 -06:00
2017-02-27 11:54:17 -06:00
2017-05-17 01:12:49 -04:00
2017-02-27 11:54:17 -06:00
2017-02-27 11:54:17 -06:00
2017-02-27 11:54:17 -06:00
2017-02-27 11:54:17 -06:00
2016-11-22 15:03:20 -08:00
2018-05-31 09:44:19 -06:00
2016-11-22 15:03:20 -08:00
2016-11-22 15:03:20 -08:00
2017-02-27 11:54:17 -06:00
2017-02-27 11:54:17 -06:00
2018-01-09 18:05:15 +09:00
2016-11-22 15:03:20 -08:00
2016-11-22 15:03:20 -08:00
2016-11-22 15:03:20 -08:00
2016-11-22 15:03:20 -08:00
2016-11-22 15:03:20 -08:00
2016-11-22 15:03:20 -08:00
2016-11-22 15:03:20 -08:00
2016-11-22 15:03:20 -08:00
2016-11-22 15:03:20 -08:00
2016-11-22 15:03:20 -08:00
2016-11-22 15:03:20 -08:00
2016-11-22 15:03:20 -08:00
2016-11-22 15:03:20 -08:00
2016-11-22 15:03:20 -08:00
2016-11-22 15:03:20 -08:00
2016-11-22 15:03:20 -08:00
2016-11-22 15:03:20 -08:00
2016-11-22 15:03:20 -08:00
2016-11-22 15:03:20 -08:00
2016-11-22 15:03:20 -08:00
2016-11-22 15:03:20 -08:00
2016-11-22 15:03:20 -08:00
2016-11-22 15:03:20 -08:00
2016-11-22 15:03:20 -08:00
2017-02-27 11:54:17 -06:00
2017-05-17 01:12:49 -04:00
2016-11-22 15:03:20 -08:00
2016-11-22 15:03:20 -08:00
2016-11-22 15:03:20 -08:00
2016-11-22 15:03:20 -08:00
2016-11-22 15:03:20 -08:00
2017-11-30 14:29:11 +09:00
2017-05-17 01:12:49 -04:00
2017-11-30 14:29:11 +09:00
2016-11-22 15:03:20 -08:00
2016-11-22 15:03:20 -08:00
2016-11-22 15:03:20 -08:00
2018-03-26 14:21:21 -07:00
2016-11-22 15:03:20 -08:00
2016-11-22 15:03:20 -08:00
2016-11-22 15:03:20 -08:00
2016-11-22 15:03:20 -08:00
2017-11-30 14:29:11 +09:00
2017-05-17 01:12:49 -04:00
2016-11-22 15:03:20 -08:00
2016-11-22 15:03:20 -08:00
2017-05-17 01:12:49 -04:00
2017-05-17 01:12:49 -04:00
2017-05-17 01:12:49 -04:00
2016-11-22 15:03:20 -08:00
2016-11-22 15:03:20 -08:00
2016-11-22 15:03:20 -08:00
2016-11-22 15:03:20 -08:00
2018-03-09 12:20:26 +09:00
2018-03-09 12:20:26 +09:00
2016-11-22 15:03:20 -08:00
2016-11-22 15:03:20 -08:00
2016-11-22 15:03:20 -08:00
2016-11-22 15:03:20 -08:00
2016-11-22 15:03:20 -08:00
2016-11-22 15:03:20 -08:00
2016-11-22 15:03:20 -08:00
2016-11-22 15:03:20 -08:00
2016-11-22 15:03:20 -08:00
2016-11-22 15:03:20 -08:00
2017-02-27 11:54:17 -06:00
2016-11-22 15:03:20 -08:00
2016-11-22 15:03:20 -08:00
2016-11-22 15:03:20 -08:00
2016-11-22 15:03:20 -08:00
2016-11-22 15:03:20 -08:00
2017-05-17 01:12:49 -04:00
2016-11-22 15:03:20 -08:00
2016-11-22 15:03:20 -08:00
2016-11-22 15:03:20 -08:00
2016-11-22 15:03:20 -08:00
2017-12-01 16:06:32 +09:00
2016-11-22 15:03:20 -08:00
2017-05-17 01:12:49 -04:00
2016-11-22 15:03:20 -08:00
2016-11-22 15:03:20 -08:00
2016-11-22 15:03:20 -08:00
2016-11-22 15:03:20 -08:00
2016-11-22 15:03:20 -08:00
2017-06-09 11:42:26 -05:00
2017-06-09 11:42:26 -05:00
2016-11-22 15:03:20 -08:00
2016-11-22 15:03:20 -08:00
2016-11-22 15:03:20 -08:00
2017-06-09 11:42:26 -05:00
2017-06-09 11:42:26 -05:00
2016-11-22 15:03:20 -08:00
2016-11-22 15:03:20 -08:00
2016-11-22 15:03:20 -08:00
2017-05-17 01:12:49 -04:00
2016-11-22 15:03:20 -08:00
2016-11-22 15:03:20 -08:00
2016-11-22 15:03:20 -08:00
2016-11-22 15:03:20 -08:00
2016-11-22 15:03:20 -08:00
2016-11-22 15:03:20 -08:00
2016-11-22 15:03:20 -08:00
2016-11-22 15:03:20 -08:00
2016-11-22 15:03:20 -08:00
2016-11-22 15:03:20 -08:00
2016-11-22 15:03:20 -08:00
2016-11-22 15:03:20 -08:00
2016-11-22 15:03:20 -08:00
2016-11-22 15:03:20 -08:00
2016-11-22 15:03:20 -08:00
2016-11-22 15:03:20 -08:00
2017-12-01 16:06:32 +09:00
2017-05-17 01:12:49 -04:00
2016-11-22 15:03:20 -08:00
2018-01-09 18:05:15 +09:00
2016-11-22 15:03:20 -08:00
2016-11-22 15:03:20 -08:00
2016-11-22 15:03:20 -08:00
2016-11-22 15:03:20 -08:00
2016-11-22 15:03:20 -08:00
2016-11-22 15:03:20 -08:00
2016-11-22 15:03:20 -08:00
2016-11-22 15:03:20 -08:00
2016-11-22 15:03:20 -08:00
2016-11-22 15:03:20 -08:00
2016-11-22 15:03:20 -08:00
2016-11-22 15:03:20 -08:00
2016-11-22 15:03:20 -08:00
2016-11-22 15:03:20 -08:00
2018-06-01 13:36:29 -07:00
2016-11-22 15:03:20 -08:00
2017-02-27 11:54:17 -06:00
2017-02-27 11:54:17 -06:00
2017-10-03 16:48:50 -04:00
2016-11-22 15:03:20 -08:00
2016-11-22 15:03:20 -08:00
2016-11-22 15:03:20 -08:00
2016-11-22 15:03:20 -08:00
2018-06-01 13:36:29 -07:00
2016-11-22 15:03:20 -08:00
2018-06-01 13:36:29 -07:00
2016-11-22 15:03:20 -08:00
2016-11-22 15:03:20 -08:00
2016-11-22 15:03:20 -08:00
2016-11-22 15:03:20 -08:00
2016-11-22 15:03:20 -08:00
2016-11-22 15:03:20 -08:00
2016-11-22 15:03:20 -08:00
2016-11-22 15:03:20 -08:00
2016-11-22 15:03:20 -08:00
2016-11-22 15:03:20 -08:00
2016-11-22 15:03:20 -08:00
2016-11-22 15:03:20 -08:00
2016-11-22 15:03:20 -08:00
2016-11-22 15:03:20 -08:00
2016-11-22 15:03:20 -08:00
2016-11-22 15:03:20 -08:00
2016-11-22 15:03:20 -08:00
2016-11-22 15:03:20 -08:00
2016-11-22 15:03:20 -08:00
2016-11-22 15:03:20 -08:00
2016-11-22 15:03:20 -08:00
2016-11-22 15:03:20 -08:00
2016-11-22 15:03:20 -08:00
2017-02-27 11:54:17 -06:00
2017-02-27 11:54:17 -06:00
2017-02-27 11:54:17 -06:00
2017-02-27 11:54:17 -06:00
2017-02-27 11:54:17 -06:00
2017-02-27 11:54:17 -06:00
2017-02-27 11:54:17 -06:00
2017-02-27 11:54:17 -06:00
2016-11-22 15:03:20 -08:00
2017-02-27 11:54:17 -06:00
2017-02-27 11:54:17 -06:00
2017-02-27 11:54:17 -06:00
2016-11-22 15:03:20 -08:00
2016-11-22 15:03:20 -08:00
2017-09-04 11:21:32 +09:00
2017-09-04 11:21:32 +09:00
2017-02-27 11:54:17 -06:00
2017-07-17 10:30:42 -05:00
2017-07-17 10:30:42 -05:00
2016-11-22 15:03:20 -08:00
2016-11-22 15:03:20 -08:00
2017-08-22 08:56:40 -07:00
2017-05-17 01:12:49 -04:00
2016-11-22 15:03:20 -08:00
2016-11-22 15:03:20 -08:00
2017-05-17 01:12:49 -04:00
2017-05-17 01:12:49 -04:00
2017-05-17 01:12:49 -04:00
2017-05-17 01:12:49 -04:00
2017-05-17 01:12:49 -04:00
2017-02-27 12:05:53 -05:00
2016-11-22 15:03:20 -08:00
2018-06-01 13:36:29 -07:00
2017-07-31 20:26:51 +09:00
2017-07-31 20:26:51 +09:00
2016-11-22 15:03:20 -08:00
2016-11-22 15:03:20 -08:00
2017-02-27 11:54:17 -06:00
2017-02-27 11:54:17 -06:00
2017-02-27 11:54:17 -06:00
2016-11-22 15:03:20 -08:00
2016-11-22 15:03:20 -08:00
2017-02-27 11:54:17 -06:00
2017-02-27 11:54:17 -06:00
2017-02-27 11:54:17 -06:00
2017-09-04 11:21:32 +09:00
2016-11-22 15:03:20 -08:00
2016-11-22 15:03:20 -08:00
2016-11-22 15:03:20 -08:00
2017-05-17 01:12:49 -04:00
2018-05-31 09:44:19 -06:00
2016-11-22 15:03:20 -08:00
2016-11-22 15:03:20 -08:00
2016-11-22 15:03:20 -08:00
2016-11-22 15:03:20 -08:00
2017-09-04 11:21:32 +09:00
2017-09-04 11:21:32 +09:00
2017-02-27 11:54:17 -06:00
2017-07-17 10:30:42 -05:00
2017-07-17 10:30:42 -05:00
2016-11-22 15:03:20 -08:00
2016-11-22 15:03:20 -08:00
2016-11-22 15:03:20 -08:00
2016-11-22 15:03:20 -08:00
2016-11-22 15:03:20 -08:00
2016-11-22 15:03:20 -08:00
2017-03-01 10:03:31 +09:00
2017-03-01 10:03:31 +09:00
2016-11-22 15:03:20 -08:00
2017-03-01 10:03:31 +09:00
2016-11-22 15:03:20 -08:00
2016-11-22 15:03:20 -08:00
2017-05-17 01:12:49 -04:00
2016-11-22 15:03:20 -08:00
2016-11-22 15:03:20 -08:00
2017-10-03 16:48:50 -04:00
2016-11-22 15:03:20 -08:00
2016-11-22 15:03:20 -08:00
2017-02-27 11:54:17 -06:00
2017-02-27 11:54:17 -06:00
2017-02-27 11:54:17 -06:00
2017-02-27 11:54:17 -06:00
2016-11-22 15:03:20 -08:00
2016-11-22 15:03:20 -08:00
2016-11-22 15:03:20 -08:00
2016-11-22 15:03:20 -08:00
2016-11-22 15:03:20 -08:00
2017-10-03 16:48:50 -04:00
2016-11-22 15:03:20 -08:00
2016-11-22 15:03:20 -08:00
2016-11-22 15:03:20 -08:00
2016-11-22 15:03:20 -08:00
2017-02-27 11:54:17 -06:00
2017-02-27 11:54:17 -06:00
2017-02-27 11:54:17 -06:00
2016-11-22 15:03:20 -08:00
2016-11-22 15:03:20 -08:00
2017-06-01 13:08:58 -04:00
2016-11-22 15:03:20 -08:00
2016-11-22 15:03:20 -08:00
2016-11-22 15:03:20 -08:00
2017-06-02 13:08:17 +09:00
2017-06-02 13:08:17 +09:00
2016-11-22 15:03:20 -08:00
2016-11-22 15:03:20 -08:00
2016-11-22 15:03:20 -08:00
2016-11-22 15:03:20 -08:00
2016-11-22 15:03:20 -08:00
2016-11-22 15:03:20 -08:00
2016-11-22 15:03:20 -08:00
2016-11-22 15:03:20 -08:00
2016-11-22 15:03:20 -08:00
2016-11-22 15:03:20 -08:00
2016-11-22 15:03:20 -08:00
2017-04-18 21:41:26 -04:00
2016-11-22 15:03:20 -08:00
2016-11-22 15:03:20 -08:00
2016-11-22 15:03:20 -08:00
2018-03-23 11:45:30 -07:00
2018-03-23 11:45:30 -07:00
2018-03-23 11:45:30 -07:00
2016-11-22 15:03:20 -08:00
2016-11-22 15:03:20 -08:00
2016-11-22 15:03:20 -08:00
2016-11-22 15:03:20 -08:00
2016-11-22 15:03:20 -08:00
2016-11-22 15:03:20 -08:00
2016-11-22 15:03:20 -08:00
2016-11-22 15:03:20 -08:00
2016-11-22 15:03:20 -08:00
2016-11-22 15:03:20 -08:00
2016-11-22 15:03:20 -08:00
2016-11-22 15:03:20 -08:00
2016-11-22 15:03:20 -08:00
2016-11-22 15:03:20 -08:00
2016-11-22 15:03:20 -08:00
2016-11-22 15:03:20 -08:00
2016-11-22 15:03:20 -08:00
2016-11-22 15:03:20 -08:00
2016-11-22 15:03:20 -08:00
2016-11-22 15:03:20 -08:00
2016-11-22 15:03:20 -08:00
2016-11-22 15:03:20 -08:00
2016-11-22 15:03:20 -08:00
2016-11-22 15:03:20 -08:00
2016-11-22 15:03:20 -08:00
2016-11-22 15:03:20 -08:00
2016-11-22 15:03:20 -08:00
2016-11-22 15:03:20 -08:00
2016-11-22 15:03:20 -08:00
2016-11-22 15:03:20 -08:00
2016-11-22 15:03:20 -08:00
2016-11-22 15:03:20 -08:00
2016-11-22 15:03:20 -08:00
2016-11-22 15:03:20 -08:00
2017-03-01 10:03:31 +09:00
2017-03-01 10:03:31 +09:00
2017-05-17 01:12:49 -04:00
2017-09-04 11:18:05 +09:00
2016-11-22 15:03:20 -08:00
2016-11-22 15:03:20 -08:00
2016-11-22 15:03:20 -08:00
2017-05-17 01:12:49 -04:00
2017-05-17 01:12:49 -04:00
2016-11-22 15:03:20 -08:00
2016-11-22 15:03:20 -08:00
2016-11-22 15:03:20 -08:00
2016-11-22 15:03:20 -08:00
2017-05-17 01:12:49 -04:00
2016-11-22 15:03:20 -08:00
2016-11-22 15:03:20 -08:00
2017-05-17 01:12:49 -04:00
2016-11-22 15:03:20 -08:00
2016-11-22 15:03:20 -08:00
2016-11-22 15:03:20 -08:00
2016-11-22 15:03:20 -08:00
2016-11-22 15:03:20 -08:00
2016-11-22 15:03:20 -08:00
2016-11-22 15:03:20 -08:00
2016-11-22 15:03:20 -08:00
2016-11-22 15:03:20 -08:00
2016-11-22 15:03:20 -08:00
2016-11-22 15:03:20 -08:00
2017-12-01 16:06:32 +09:00
2016-11-22 15:03:20 -08:00
2017-05-17 01:12:49 -04:00
2016-11-22 15:03:20 -08:00
2016-11-22 15:03:20 -08:00
2017-04-22 11:13:13 +09:00
2016-11-22 15:03:20 -08:00
2016-11-22 15:03:20 -08:00
2017-12-01 16:06:32 +09:00
2017-05-17 01:12:49 -04:00
2016-11-22 15:03:20 -08:00
2017-04-19 10:06:41 +09:00
2016-11-22 15:03:20 -08:00
2016-11-22 15:03:20 -08:00
2016-11-22 15:03:20 -08:00
2016-11-22 15:03:20 -08:00
2017-04-22 11:13:13 +09:00
2016-11-22 15:03:20 -08:00
2017-03-18 15:08:59 -05:00
2018-03-08 14:26:02 +09:00