X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/96cedde3cdbc0b8ffc3f096a1b65d021b0226f99..88f49b34e91fe95b712d1545ae71a0896f5466c1:/src/smpi/colls/barrier/barrier-mpich-smp.cpp diff --git a/src/smpi/colls/barrier/barrier-mpich-smp.cpp b/src/smpi/colls/barrier/barrier-mpich-smp.cpp index cf37e017a9..ace677737d 100644 --- a/src/smpi/colls/barrier/barrier-mpich-smp.cpp +++ b/src/smpi/colls/barrier/barrier-mpich-smp.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2013-2019. The SimGrid Team. +/* Copyright (c) 2013-2020. The SimGrid Team. * All rights reserved. */ /* This program is free software; you can redistribute it and/or modify it @@ -17,7 +17,7 @@ namespace simgrid{ namespace smpi{ -int Coll_barrier_mpich_smp::barrier(MPI_Comm comm) +int barrier__mpich_smp(MPI_Comm comm) { int mpi_errno = MPI_SUCCESS; int mpi_errno_ret = MPI_SUCCESS; @@ -31,31 +31,31 @@ int Coll_barrier_mpich_smp::barrier(MPI_Comm comm) shmem_comm = comm->get_intra_comm(); local_rank = shmem_comm->rank(); /* do the intranode barrier on all nodes */ - if (shmem_comm != NULL) { - mpi_errno = Coll_barrier_mpich::barrier(shmem_comm); - if (mpi_errno) { - mpi_errno_ret+=mpi_errno; - } + if (shmem_comm != nullptr) { + mpi_errno = barrier__mpich(shmem_comm); + if (mpi_errno) { + mpi_errno_ret += mpi_errno; + } } leader_comm = comm->get_leaders_comm(); /* do the barrier across roots of all nodes */ - if (leader_comm != NULL && local_rank == 0) { - mpi_errno = Coll_barrier_mpich::barrier(leader_comm); - if (mpi_errno) { - mpi_errno_ret+=mpi_errno; - } + if (leader_comm != nullptr && local_rank == 0) { + mpi_errno = barrier__mpich(leader_comm); + if (mpi_errno) { + mpi_errno_ret += mpi_errno; + } } /* release the local processes on each node with a 1-byte * broadcast (0-byte broadcast just returns without doing * anything) */ - if (shmem_comm != NULL) { - int i = 0; - mpi_errno = Coll_bcast_mpich::bcast(&i, 1, MPI_BYTE, 0, shmem_comm); - if (mpi_errno) { - mpi_errno_ret+=mpi_errno; - } + if (shmem_comm != nullptr) { + int i = 0; + mpi_errno = bcast__mpich(&i, 1, MPI_BYTE, 0, shmem_comm); + if (mpi_errno) { + mpi_errno_ret += mpi_errno; + } } if (mpi_errno_ret)