File tree Expand file tree Collapse file tree 1 file changed +9
-1
lines changed Expand file tree Collapse file tree 1 file changed +9
-1
lines changed Original file line number Diff line number Diff line change 3
3
* Copyright (c) 2004-2010 The Trustees of Indiana University and Indiana
4
4
* University Research and Technology
5
5
* Corporation. All rights reserved.
6
- * Copyright (c) 2004-2018 The University of Tennessee and The University
6
+ * Copyright (c) 2004-2020 The University of Tennessee and The University
7
7
* of Tennessee Research Foundation. All rights
8
8
* reserved.
9
9
* Copyright (c) 2004-2005 High Performance Computing Center Stuttgart,
@@ -817,6 +817,14 @@ void mca_pml_ob1_error_handler(
817
817
return ;
818
818
}
819
819
#endif /* OPAL_CUDA_SUPPORT */
820
+ /* Some BTL report unreachable errors during normal MPI_Finalize
821
+ * termination. Lets simply ignore such errors after MPI is not supposed to
822
+ * be operational anyway.
823
+ */
824
+ if (ompi_mpi_state >= OMPI_MPI_STATE_FINALIZE_PAST_COMM_SELF_DESTRUCT ) {
825
+ return ;
826
+ }
827
+
820
828
ompi_rte_abort (-1 , btlinfo );
821
829
}
822
830
You can’t perform that action at this time.
0 commit comments