Page MenuHomec4science

loop.hh
No OneTemporary

File Metadata

Created
Sat, Jun 29, 09:55
/**
* @file
*
* @author Lucas Frérot <lucas.frerot@epfl.ch>
*
* @section LICENSE
*
* Copyright (©) 2017 EPFL (Ecole Polytechnique Fédérale de
* Lausanne) Laboratory (LSMS - Laboratoire de Simulation en Mécanique des
* Solides)
*
* Tamaas is free software: you can redistribute it and/or modify it under the
* terms of the GNU Lesser General Public License as published by the Free
* Software Foundation, either version 3 of the License, or (at your option) any
* later version.
*
* Tamaas 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 Lesser General Public License for more
* details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with Tamaas. If not, see <http://www.gnu.org/licenses/>.
*
*/
/* -------------------------------------------------------------------------- */
#ifndef __LOOP_HH__
#define __LOOP_HH__
/* -------------------------------------------------------------------------- */
#include "tamaas.hh"
#include "loops/loop_omp.hh"
#include <type_traits>
#include <boost/preprocessor/seq.hpp>
__BEGIN_TAMAAS__
#define EXEC_CASE_MACRO(r, strided, backend) \
case backend: \
BOOST_PP_CAT(detail::exec_loop_, backend)<strided>(func, grids...); \
break;
#define REDUCE_CASE_MACRO(r, strided, backend) \
case backend: \
return BOOST_PP_CAT(detail::reduce_loop_, backend)<op, strided>(func, grids...); \
break;
#define AVAILABLE_BACKENDS (omp)
class Loop {
public:
/// Backends enumeration
enum backend {
omp, ///< [OpenMP](http://www.openmp.org/specifications/) backend
cuda, ///< [Cuda](http://docs.nvidia.com/cuda/index.html) backend
};
private:
/// Constructor
Loop() = default;
public:
/// Initialize singleton instance
static void init(backend back);
/// Get singleton instance
static Loop & get();
public:
/// Loop functor over any number of grids
template <typename Functor, typename... Grids>
void loop(Functor&& func, Grids&&... grids) {
switch(_backend) {
BOOST_PP_SEQ_FOR_EACH(EXEC_CASE_MACRO, false, AVAILABLE_BACKENDS);
default:
TAMAAS_EXCEPTION("Backend not implemented");
}
}
/// Strided loop over any number of grids
template <typename Functor, typename... Grids>
void stridedLoop(Functor&& func, Grids&&... grids) {
switch(_backend) {
BOOST_PP_SEQ_FOR_EACH(EXEC_CASE_MACRO, true, AVAILABLE_BACKENDS);
default:
TAMAAS_EXCEPTION("Backend not implemented");
}
}
/// Reduce over any number of grids
template <operation op, typename Functor, typename... Grids>
auto reduce(Functor&& func, Grids&&... grids)
-> decltype(func(grids(0)...)) {
switch(_backend) {
BOOST_PP_SEQ_FOR_EACH(REDUCE_CASE_MACRO, false, AVAILABLE_BACKENDS);
default:
TAMAAS_EXCEPTION("Backend not implemented");
}
}
/// Strided reduce over any number of grids
template <operation op, typename Functor, typename... Grids>
auto stridedReduce(Functor&& func, Grids&&... grids)
-> decltype(func(grids(0)...)) {
switch(_backend) {
BOOST_PP_SEQ_FOR_EACH(REDUCE_CASE_MACRO, true, AVAILABLE_BACKENDS);
default:
TAMAAS_EXCEPTION("Backend not implemented");
}
}
private:
/// Singleton instance
static Loop * singleton;
/// Backend type
backend _backend;
};
__END_TAMAAS__
#endif // __LOOP_HH__

Event Timeline