Page MenuHomec4science

tamaas.cpp
No OneTemporary

File Metadata

Created
Tue, May 14, 00:30

tamaas.cpp

/**
* @file
* @section LICENSE
*
* Copyright (©) 2016-2020 EPFL (École Polytechnique Fédérale de Lausanne),
* Laboratory (LSMS - Laboratoire de Simulation en Mécanique des Solides)
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as published
* by the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program 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 Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*
*/
/* -------------------------------------------------------------------------- */
#include "tamaas.hh"
#include "fftw_interface.hh"
#include "fftw_mpi_interface.hh"
#include "mpi_interface.hh"
#include <omp.h>
/* -------------------------------------------------------------------------- */
namespace tamaas {
void initialize(UInt num_threads) {
mpi::thread provided = mpi::thread::single;
if (not mpi::initialized())
mpi::init_thread(nullptr, nullptr, mpi::thread::single, &provided);
bool should_init_threads = (provided > mpi::thread::single);
if (num_threads) {
omp_set_num_threads(num_threads); // set user-defined number of threads
}
if (should_init_threads and (not fftw::init_threads())) {
TAMAAS_EXCEPTION("FFTW could not initialize threads!");
}
if (mpi::initialized())
fftw::mpi::init();
if (should_init_threads) {
fftw::plan_with_nthreads(omp_get_max_threads());
}
}
/* -------------------------------------------------------------------------- */
void finalize() {
if (not mpi::finalized()) {
fftw::cleanup_threads();
fftw::mpi::cleanup();
mpi::finalize();
}
}
namespace {
/// Manager for initialize + finalize
struct entry_exit_points {
entry_exit_points() { initialize(); }
~entry_exit_points() { finalize(); }
static const entry_exit_points singleton;
};
const entry_exit_points entry_exit_points::singleton;
} // namespace
} // namespace tamaas

Event Timeline