Implement mpi lib (1). Array, generic, base, vector
- Implement the basic structure of the mpi lib
and specialization for arrays, basic types, std::vector
- adapted the array class for the lazy mpi mechanism
- pass tests on arrays :
- scatter, gather on array<long,2> array<complex,2>, etc...
- broadcast
- several files for readibility
- the std::vector coded but not tested.
- generic mecanism implemented and tested (mpi_generic test)
- added several tests for the mpi lib.
- TODO : more tests, doc...
2014-06-03 14:54:11 +02:00
|
|
|
/*******************************************************************************
|
|
|
|
*
|
|
|
|
* TRIQS: a Toolbox for Research in Interacting Quantum Systems
|
|
|
|
*
|
|
|
|
* Copyright (C) 2014 by O. Parcollet
|
|
|
|
*
|
|
|
|
* TRIQS is free software: you can redistribute it and/or modify it under the
|
|
|
|
* terms of the GNU General Public License as published by the Free Software
|
|
|
|
* Foundation, either version 3 of the License, or (at your option) any later
|
|
|
|
* version.
|
|
|
|
*
|
|
|
|
* TRIQS is distributed in the hope that it will be useful, but WITHOUT ANY
|
|
|
|
* WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
|
|
|
|
* FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
|
|
|
|
* details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License along with
|
|
|
|
* TRIQS. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*
|
|
|
|
******************************************************************************/
|
|
|
|
#pragma once
|
|
|
|
#include "./base.hpp"
|
|
|
|
#include <boost/mpi.hpp>
|
|
|
|
|
2014-09-03 14:03:31 +02:00
|
|
|
#define TRIQS_MPI_IMPLEMENTED_VIA_BOOST using triqs_mpi_via_boost = void;
|
|
|
|
|
Implement mpi lib (1). Array, generic, base, vector
- Implement the basic structure of the mpi lib
and specialization for arrays, basic types, std::vector
- adapted the array class for the lazy mpi mechanism
- pass tests on arrays :
- scatter, gather on array<long,2> array<complex,2>, etc...
- broadcast
- several files for readibility
- the std::vector coded but not tested.
- generic mecanism implemented and tested (mpi_generic test)
- added several tests for the mpi lib.
- TODO : more tests, doc...
2014-06-03 14:54:11 +02:00
|
|
|
namespace triqs {
|
|
|
|
namespace mpi {
|
|
|
|
|
2014-09-03 14:03:31 +02:00
|
|
|
// implement the communicator cast
|
|
|
|
inline communicator::operator boost::mpi::communicator() const {
|
|
|
|
return boost::mpi::communicator(_com, boost::mpi::comm_duplicate);
|
|
|
|
// duplicate policy : cf http://www.boost.org/doc/libs/1_56_0/doc/html/boost/mpi/comm_create_kind.html
|
|
|
|
}
|
|
|
|
|
|
|
|
// reverse : construct (implicit) the communicator from the boost one.
|
|
|
|
inline communicator::communicator(boost::mpi::communicator c) :_com(c) {}
|
|
|
|
|
Implement mpi lib (1). Array, generic, base, vector
- Implement the basic structure of the mpi lib
and specialization for arrays, basic types, std::vector
- adapted the array class for the lazy mpi mechanism
- pass tests on arrays :
- scatter, gather on array<long,2> array<complex,2>, etc...
- broadcast
- several files for readibility
- the std::vector coded but not tested.
- generic mecanism implemented and tested (mpi_generic test)
- added several tests for the mpi lib.
- TODO : more tests, doc...
2014-06-03 14:54:11 +02:00
|
|
|
/** ------------------------------------------------------------
|
|
|
|
* Type which we use boost::mpi
|
|
|
|
* ---------------------------------------------------------- **/
|
|
|
|
|
|
|
|
template <typename T> struct mpi_impl_boost_mpi {
|
|
|
|
|
|
|
|
static T invoke(tag::reduce, communicator c, T const &a, int root) {
|
|
|
|
T b;
|
|
|
|
boost::mpi::reduce(c, a, b, std::c14::plus<>(), root);
|
|
|
|
return b;
|
|
|
|
}
|
|
|
|
|
2014-10-21 16:15:44 +02:00
|
|
|
static T invoke(tag::all_reduce, communicator c, T const &a, int root) {
|
Implement mpi lib (1). Array, generic, base, vector
- Implement the basic structure of the mpi lib
and specialization for arrays, basic types, std::vector
- adapted the array class for the lazy mpi mechanism
- pass tests on arrays :
- scatter, gather on array<long,2> array<complex,2>, etc...
- broadcast
- several files for readibility
- the std::vector coded but not tested.
- generic mecanism implemented and tested (mpi_generic test)
- added several tests for the mpi lib.
- TODO : more tests, doc...
2014-06-03 14:54:11 +02:00
|
|
|
T b;
|
2014-09-03 14:03:31 +02:00
|
|
|
boost::mpi::all_reduce(c, a, b, std::c14::plus<>());
|
Implement mpi lib (1). Array, generic, base, vector
- Implement the basic structure of the mpi lib
and specialization for arrays, basic types, std::vector
- adapted the array class for the lazy mpi mechanism
- pass tests on arrays :
- scatter, gather on array<long,2> array<complex,2>, etc...
- broadcast
- several files for readibility
- the std::vector coded but not tested.
- generic mecanism implemented and tested (mpi_generic test)
- added several tests for the mpi lib.
- TODO : more tests, doc...
2014-06-03 14:54:11 +02:00
|
|
|
return b;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void reduce_in_place(communicator c, T &a, int root) { boost::mpi::reduce(c, a, a, std::c14::plus<>(), root); }
|
|
|
|
static void broadcast(communicator c, T &a, int root) { boost::mpi::broadcast(c, a, root); }
|
|
|
|
|
|
|
|
static void scatter(communicator c, T const &, int root) = delete;
|
|
|
|
static void gather(communicator c, T const &, int root) = delete;
|
|
|
|
static void allgather(communicator c, T const &, int root) = delete;
|
|
|
|
};
|
|
|
|
|
2014-09-03 14:03:31 +02:00
|
|
|
// If type T has a mpi_implementation nested struct, then it is mpi_impl<T>.
|
|
|
|
template <typename T> struct mpi_impl<T, typename T::triqs_mpi_via_boost> : mpi_impl_boost_mpi<T> {};
|
Implement mpi lib (1). Array, generic, base, vector
- Implement the basic structure of the mpi lib
and specialization for arrays, basic types, std::vector
- adapted the array class for the lazy mpi mechanism
- pass tests on arrays :
- scatter, gather on array<long,2> array<complex,2>, etc...
- broadcast
- several files for readibility
- the std::vector coded but not tested.
- generic mecanism implemented and tested (mpi_generic test)
- added several tests for the mpi lib.
- TODO : more tests, doc...
2014-06-03 14:54:11 +02:00
|
|
|
|
|
|
|
}}//namespace
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|