mirror of
https://github.com/triqs/dft_tools
synced 2024-11-01 11:43:47 +01:00
62 lines
2.0 KiB
C++
62 lines
2.0 KiB
C++
|
/*******************************************************************************
|
||
|
*
|
||
|
* 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>
|
||
|
|
||
|
namespace triqs {
|
||
|
namespace mpi {
|
||
|
|
||
|
/** ------------------------------------------------------------
|
||
|
* 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;
|
||
|
}
|
||
|
|
||
|
static T invoke(tag::allreduce, communicator c, T const &a, int root) {
|
||
|
T b;
|
||
|
boost::mpi::all_reduce(c, a, b, std::c14::plus<>(), root);
|
||
|
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;
|
||
|
};
|
||
|
|
||
|
// default
|
||
|
//template <typename T> struct mpi_impl<T> : mpi_impl_boost_mpi<T> {};
|
||
|
|
||
|
}}//namespace
|
||
|
|
||
|
|
||
|
|
||
|
|