OpenRadioss 2025.1.11
OpenRadioss project
Loading...
Searching...
No Matches
spmd_mstop.F
Go to the documentation of this file.
1Copyright> OpenRadioss
2Copyright> Copyright (C) 1986-2025 Altair Engineering Inc.
3Copyright>
4Copyright> This program is free software: you can redistribute it and/or modify
5Copyright> it under the terms of the GNU Affero General Public License as published by
6Copyright> the Free Software Foundation, either version 3 of the License, or
7Copyright> (at your option) any later version.
8Copyright>
9Copyright> This program is distributed in the hope that it will be useful,
10Copyright> but WITHOUT ANY WARRANTY; without even the implied warranty of
11Copyright> MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12Copyright> GNU Affero General Public License for more details.
13Copyright>
14Copyright> You should have received a copy of the GNU Affero General Public License
15Copyright> along with this program. If not, see <https://www.gnu.org/licenses/>.
16Copyright>
17Copyright>
18Copyright> Commercial Alternative: Altair Radioss Software
19Copyright>
20Copyright> As an alternative to this open-source version, Altair also offers Altair Radioss
21Copyright> software under a commercial license. Contact Altair to discuss further if the
22Copyright> commercial version may interest you: https://www.altair.com/radioss/.
23!||====================================================================
24!|| spmd_mstop ../engine/source/mpi/init/spmd_mstop.F
25!||--- called by ------------------------------------------------------
26!|| imp_sol_init ../engine/source/implicit/imp_sol_init.F
27!||--- calls -----------------------------------------------------
28!|| my_exit ../engine/source/system/my_exit.c
29!||--- uses -----------------------------------------------------
30!|| spmd_comm_world_mod ../engine/source/mpi/spmd_comm_world.F90
31!||====================================================================
32 SUBROUTINE spmd_mstop()
33C-----------------------------------------------
34C I m p l i c i t T y p e s
35C-----------------------------------------------
36 USE spmd_comm_world_mod, ONLY : spmd_comm_world
37#include "implicit_f.inc"
38C-----------------------------------------------------------------
39C M e s s a g e P a s s i n g
40C-----------------------------------------------
41#include "spmd.inc"
42C-----------------------------------------------
43C C o m m o n B l o c k s
44C-----------------------------------------------
45#include "task_c.inc"
46C-----------------------------------------------
47C L o c a l V a r i a b l e s
48C-----------------------------------------------
49#ifdef MPI
50 INTEGER ierror
51C-----------------------------------------------
52C S o u r c e L i n e s
53C-----------------------------------------------
54 call mpi_barrier(spmd_comm_world,ierror)
55 CALL mpi_finalize(ierror)
56 IF(ispmd/=0)THEN
57 CALL my_exit(0)
58 ENDIF
59#endif
60 RETURN
61 END
62
void my_exit(int *i)
Definition analyse.c:1038
subroutine mpi_finalize(ierr)
Definition mpi.f:288
subroutine mpi_barrier(comm, ierr)
Definition mpi.f:188
subroutine spmd_mstop()
Definition spmd_mstop.F:33