20#include "autopas/Version.h"
35template <
class Particle_T>
49template <
class Particle_T>
58template <
class Particle_T>
60 _autoTuners = std::move(other._autoTuners);
61 _logicHandler = std::move(other._logicHandler);
65template <
class Particle_T>
70 AutoPasLog(INFO,
"AutoPas Version: {}", AutoPas_VERSION);
77 _externalMPICommunicator =
true;
79 if (std::find(_tuningStrategyOptions.begin(), _tuningStrategyOptions.end(),
80 TuningStrategyOption::mpiDivideAndConquer) != _tuningStrategyOptions.end()) {
81 _tuningStrategyFactoryInfo.mpiDivideAndConquer =
true;
84 _logicHandlerInfo.sortingThreshold = _sortingThreshold;
90 const auto interactionLength = _logicHandlerInfo.cutoff * _logicHandlerInfo.verletSkin;
91 const auto boxLengthX = _logicHandlerInfo.boxMax[0] - _logicHandlerInfo.boxMin[0];
95 return {_allowedCellSizeFactors->getAll()};
100 for (
const auto &interactionType : _allowedInteractionTypeOptions) {
102 _allowedContainers, _allowedTraversals[interactionType], _allowedLoadEstimators,
103 _allowedDataLayouts[interactionType], _allowedNewton3Options[interactionType], &cellSizeFactors,
107 tuningStrategies.reserve(_tuningStrategyOptions.size());
108 for (
const auto &strategy : _tuningStrategyOptions) {
109 tuningStrategies.emplace_back(TuningStrategyFactory::generateTuningStrategy(
110 searchSpace, strategy, _tuningStrategyFactoryInfo, _outputSuffix));
112 if (_useTuningStrategyLoggerProxy) {
113 tuningStrategies.emplace_back(std::make_unique<TuningStrategyLogger>(_outputSuffix));
115 auto tunerOutputSuffix = _outputSuffix +
"_" + interactionType.to_string();
116 _autoTuners.emplace(interactionType,
117 std::make_unique<autopas::AutoTuner>(tuningStrategies, searchSpace, _autoTunerInfo,
118 _verletRebuildFrequency, tunerOutputSuffix));
122 _logicHandler = std::make_unique<std::remove_reference_t<
decltype(*_logicHandler)>>(
123 _autoTuners, _logicHandlerInfo, _verletRebuildFrequency, _outputSuffix);
126template <
class Particle_T>
127template <
class Functor>
130 not std::is_same_v<Functor, autopas::Functor<Particle_T, Functor>>,
131 "The static type of Functor in computeInteractions is not allowed to be autopas::Functor. Please use the "
132 "derived type instead, e.g. by using a dynamic_cast.");
133 if (f->
getCutoff() > this->getCutoff()) {
139 return _logicHandler->template computeInteractionsPipeline<Functor>(f, InteractionTypeOption::pairwise);
141 return _logicHandler->template computeInteractionsPipeline<Functor>(f, InteractionTypeOption::triwise);
144 "Functor is not valid. Only pairwise and triwise functors are supported. Please use a functor derived from "
145 "PairwiseFunctor or TriwiseFunctor.");
150template <
class Particle_T>
152 size_t numParticles{0};
153 if (behavior & IteratorBehavior::owned) {
154 numParticles += _logicHandler->getNumberOfParticlesOwned();
156 if (behavior & IteratorBehavior::halo) {
157 numParticles += _logicHandler->getNumberOfParticlesHalo();
160 if (behavior & ~(IteratorBehavior::ownedOrHalo)) {
162 "AutoPas::getNumberOfParticles() does not support iterator behaviors other than owned or halo.");
168template <
class Particle_T>
170 _logicHandler->reserve(numParticles);
173template <
class Particle_T>
175 _logicHandler->reserve(numParticles, numHaloParticles);
178template <
class Particle_T>
182 reserve(getNumberOfParticles(IteratorBehavior::owned) + numParticlesToAdd,
183 getNumberOfParticles(IteratorBehavior::halo) + numHalosToAdd);
184 AUTOPAS_OPENMP(parallel
for schedule(
static, std::max(1ul, collectionSize / omp_get_max_threads())))
185 for (auto i = 0; i < collectionSize; ++i) {
190template <
class Particle_T>
192 _logicHandler->addParticle(p);
195template <
class Particle_T>
196template <
class Collection>
198 addParticlesAux(particles.size(), 0, particles.size(), [&](
auto i) { addParticle(particles[i]); });
201template <
class Particle_T>
202template <
class Collection,
class F>
204 std::vector<char> predicateMask(particles.size());
207 for (
auto i = 0; i < particles.size(); ++i) {
208 if (predicate(particles[i])) {
209 predicateMask[i] =
static_cast<char>(
true);
212 predicateMask[i] =
static_cast<char>(
false);
216 addParticlesAux(numTrue, 0, particles.size(), [&](
auto i) {
217 if (predicateMask[i]) {
218 addParticle(particles[i]);
223template <
class Particle_T>
228template <
class Particle_T>
230 const std::array<double, 3> &boxMax) {
231 if (_allowedCellSizeFactors->isInterval()) {
233 "The allowed Cell Size Factors are a continuous interval but internally only those values that "
234 "yield unique numbers of cells are used. Resizing does not cause these values to be recalculated so "
235 "the same configurations might now yield different and non-unique numbers of cells!");
237 _logicHandlerInfo.boxMin = boxMin;
238 _logicHandlerInfo.boxMax = boxMax;
239 return _logicHandler->resizeBox(boxMin, boxMax);
242template <
class Particle_T>
244 for (
auto &[interaction, tuner] : _autoTuners) {
249template <
class Particle_T>
254template <
class Particle_T>
255template <
class Collection>
257 addParticlesAux(0, particles.size(), particles.size(), [&](
auto i) { addHaloParticle(particles[i]); });
260template <
class Particle_T>
261template <
class Collection,
class F>
263 std::vector<char> predicateMask(particles.size());
266 for (
auto i = 0; i < particles.size(); ++i) {
267 if (predicate(particles[i])) {
268 predicateMask[i] =
static_cast<char>(
true);
271 predicateMask[i] =
static_cast<char>(
false);
275 addParticlesAux(0, numTrue, particles.size(), [&](
auto i) {
276 if (predicateMask[i]) {
277 addHaloParticle(particles[i]);
282template <
class Particle_T>
287template <
class Particle_T>
289 _logicHandler->decreaseParticleCounter(*iter);
290 internal::deleteParticle(iter);
293template <
class Particle_T>
295 _logicHandler->decreaseParticleCounter(*iter);
296 internal::deleteParticle(iter);
299template <
class Particle_T>
301 _logicHandler->decreaseParticleCounter(particle);
303 auto [particleDeleted, refStillValid] = _logicHandler->deleteParticleFromBuffers(particle);
304 if (not particleDeleted) {
305 refStillValid = _logicHandler->getContainer().deleteParticle(particle);
307 return refStillValid;
310template <
class Particle_T>
312 return _logicHandler->
begin(behavior);
315template <
class Particle_T>
317 return std::as_const(*_logicHandler).
begin(behavior);
320template <
class Particle_T>
322 const std::array<double, 3> &lowerCorner,
const std::array<double, 3> &higherCorner, IteratorBehavior behavior) {
326template <
class Particle_T>
328 const std::array<double, 3> &lowerCorner,
const std::array<double, 3> &higherCorner,
329 IteratorBehavior behavior)
const {
330 return std::as_const(*_logicHandler).
getRegionIterator(lowerCorner, higherCorner, behavior);
333template <
class Particle_T>
335 return _logicHandler->getContainer().getContainerType();
338template <
class Particle_T>
340 return _logicHandler->getContainer().getBoxMin();
343template <
class Particle_T>
345 return _logicHandler->getContainer().getBoxMax();
348template <
class Particle_T>
350 return _logicHandler->getContainer();
353template <
class Particle_T>
355 return _logicHandler->getContainer();
358template <
class Particle_T>
360 bool isTrivial =
true;
361 for (
auto &[interaction, tuner] : _autoTuners) {
#define AutoPasLog(lvl, fmt,...)
Macro for logging providing common meta information without filename.
Definition: Logger.h:24
#define AUTOPAS_MPI_COMM_NULL
Wrapper for MPI_COMM_NULL.
Definition: WrapMPI.h:118
#define AUTOPAS_MPI_COMM_WORLD
Wrapper for MPI_COMM_WORLD.
Definition: WrapMPI.h:120
#define AUTOPAS_OPENMP(args)
Empty macro to throw away any arguments.
Definition: WrapOpenMP.h:126
The AutoPas class is intended to be the main point of Interaction for the user.
Definition: AutoPasDecl.h:46
std::vector< Particle_T > updateContainer()
Updates the container.
Definition: AutoPasImpl.h:224
bool searchSpaceIsTrivial()
get the bool value indicating if the search space is trivial (not more than one configuration to test...
Definition: AutoPasImpl.h:359
void reserve(size_t numParticles)
Reserve memory for a given number of particles in the container and logic layers.
Definition: AutoPasImpl.h:169
void addParticles(Collection &&particles)
Adds all particles from the collection to the container.
Definition: AutoPasImpl.h:197
void addParticlesIf(Collection &&particles, F predicate)
Adds all particles for which predicate(particle) == true to the container.
Definition: AutoPasImpl.h:203
void addHaloParticle(const Particle_T &haloParticle)
Adds a particle to the container that lies in the halo region of the container.
Definition: AutoPasImpl.h:250
AutoPas(std::ostream &logOutputStream=std::cout)
Constructor for the autopas class.
Definition: AutoPasImpl.h:36
RegionIteratorT getRegionIterator(const std::array< double, 3 > &lowerCorner, const std::array< double, 3 > &higherCorner, IteratorBehavior behavior=IteratorBehavior::ownedOrHalo)
Iterate over all particles in a specified region.
Definition: AutoPasImpl.h:321
AutoPas & operator=(AutoPas &&other) noexcept
Move assignment operator.
Definition: AutoPasImpl.h:59
void init()
Initialize AutoPas.
Definition: AutoPasImpl.h:66
void forceRetune()
Force the internal tuner to enter a new tuning phase upon the next call to computeInteractions().
Definition: AutoPasImpl.h:243
size_t getNumberOfParticles(IteratorBehavior behavior=IteratorBehavior::owned) const
Returns the number of particles in this container.
Definition: AutoPasImpl.h:151
void deleteAllParticles()
Deletes all particles.
Definition: AutoPasImpl.h:283
bool computeInteractions(Functor *f)
Function to iterate over all inter-particle interactions in the container This function only handles ...
Definition: AutoPasImpl.h:128
void addParticle(const Particle_T &p)
Adds a particle to the container.
Definition: AutoPasImpl.h:191
IteratorT begin(IteratorBehavior behavior=IteratorBehavior::ownedOrHalo)
Iterate over all particles by using for(auto iter = autoPas.begin(); iter.isValid(); ++iter)
Definition: AutoPasImpl.h:311
std::vector< std::unique_ptr< TuningStrategyInterface > > TuningStrategiesListType
Type for the member holding all tuning strategies.
Definition: AutoTuner.h:46
Public iterator class that iterates over a particle container and additional vectors (which are typic...
Definition: ContainerIterator.h:93
Functor base class.
Definition: Functor.h:40
double getCutoff() const
Getter for the functor's cutoff.
Definition: Functor.h:168
static void create(std::string &filename)
create a logger writing to the file system
Definition: Logger.h:44
static auto get()
Get a pointer to the actual logger object.
Definition: Logger.h:90
static void unregister()
removes the logger.
Definition: Logger.h:84
Class describing an interval.
Definition: NumberInterval.h:15
Class describing a finite set of numbers.
Definition: NumberSetFinite.h:19
The ParticleContainerInterface class provides a basic interface for all Containers within AutoPas.
Definition: ParticleContainerInterface.h:37
static void exception(const Exception e)
Handle an exception derived by std::exception.
Definition: ExceptionHandler.h:63
std::set< double > calculateRelevantCsfs(const NumberInterval< double > &numberInterval, double interactionLength, double domainLengthX)
For a given domain parametrization, calculate which cell size factors (csf) in an interval actually a...
Definition: SearchSpaceGenerators.cpp:79
std::set< Configuration > cartesianProduct(const std::set< ContainerOption > &allowedContainerOptions, const std::set< TraversalOption > &allowedTraversalOptions, const std::set< LoadEstimatorOption > &allowedLoadEstimatorOptions, const std::set< DataLayoutOption > &allowedDataLayoutOptions, const std::set< Newton3Option > &allowedNewton3Options, const NumberSet< double > *allowedCellSizeFactors, const InteractionTypeOption &interactionType)
Fills the search space with the cartesian product of the given options (minus invalid combinations).
Definition: SearchSpaceGenerators.cpp:18
std::string getCompilerInfo()
Get name and version number of a list of known compilers.
Definition: CompileInfo.cpp:9
decltype(isTriwiseFunctorImpl(std::declval< FunctorT >())) isTriwiseFunctor
Check whether a Functor Type is inheriting from TriwiseFunctor.
Definition: checkFunctorType.h:56
decltype(isPairwiseFunctorImpl(std::declval< FunctorT >())) isPairwiseFunctor
Check whether a Functor Type is inheriting from PairwiseFunctor.
Definition: checkFunctorType.h:49
This is the main namespace of AutoPas.
Definition: AutoPasDecl.h:32
int AutoPas_MPI_Comm_dup(AutoPas_MPI_Comm comm, AutoPas_MPI_Comm *newComm)
Wrapper for MPI_Comm_dup.
Definition: WrapMPI.h:815
int AutoPas_MPI_Comm_rank(AutoPas_MPI_Comm comm, int *rank)
Wrapper for MPI_Comm_rank.
Definition: WrapMPI.h:807
static unsigned int count
Instance counter to help track the number of autopas instances.
Definition: InstanceCounter.h:18