19#include "autopas/Version.h"
34template <
class Particle_T>
39template <
class Particle_T>
44template <
class Particle_T>
47template <
class Particle_T>
49 _tuningManager = std::move(other._tuningManager);
50 _logicHandler = std::move(other._logicHandler);
54template <
class Particle_T>
59 AutoPasLog(INFO,
"AutoPas Version: {}", AutoPas_VERSION);
66 _externalMPICommunicator =
true;
68 if (std::find(_tuningStrategyOptions.begin(), _tuningStrategyOptions.end(),
69 TuningStrategyOption::mpiDivideAndConquer) != _tuningStrategyOptions.end()) {
70 _tuningStrategyFactoryInfo.mpiDivideAndConquer =
true;
73 _logicHandlerInfo.sortingThreshold = _sortingThreshold;
79 const auto interactionLength = _logicHandlerInfo.cutoff * _logicHandlerInfo.verletSkin;
80 const auto boxLengthX = _logicHandlerInfo.boxMax[0] - _logicHandlerInfo.boxMin[0];
84 return {_allowedCellSizeFactors->getAll()};
88 _tuningManager = std::make_shared<TuningManager>(_autoTunerInfo);
90 for (
const auto &interactionType : _allowedInteractionTypeOptions) {
92 _allowedContainers, _allowedTraversals[interactionType], _allowedLoadEstimators,
93 _allowedDataLayouts[interactionType], _allowedNewton3Options[interactionType], &cellSizeFactors,
94 _allowedVecPatternsOptions[interactionType], interactionType);
97 tuningStrategies.reserve(_tuningStrategyOptions.size());
98 for (
const auto &strategy : _tuningStrategyOptions) {
99 tuningStrategies.emplace_back(TuningStrategyFactory::generateTuningStrategy(
100 searchSpace, strategy, _tuningStrategyFactoryInfo, interactionType, _outputSuffix));
102 if (_useTuningStrategyLoggerProxy) {
103 tuningStrategies.emplace_back(std::make_unique<TuningStrategyLogger>(_outputSuffix));
105 auto tunerOutputSuffix = _outputSuffix +
"_" + interactionType.to_string();
106 _tuningManager->addAutoTuner(std::make_unique<AutoTuner>(tuningStrategies, searchSpace, _autoTunerInfo,
107 _verletRebuildFrequency, tunerOutputSuffix),
112 _logicHandler = std::make_unique<std::remove_reference_t<
decltype(*_logicHandler)>>(
113 _tuningManager, _logicHandlerInfo, _verletRebuildFrequency, _outputSuffix);
116template <
class Particle_T>
117template <
class Functor>
120 not std::is_same_v<Functor, autopas::Functor<Particle_T, Functor>>,
121 "The static type of Functor in computeInteractions is not allowed to be autopas::Functor. Please use the "
122 "derived type instead, e.g. by using a dynamic_cast.");
123 if (f->
getCutoff() > this->getCutoff()) {
129 return _logicHandler->template computeInteractionsPipeline<Functor>(f, InteractionTypeOption::pairwise);
131 return _logicHandler->template computeInteractionsPipeline<Functor>(f, InteractionTypeOption::triwise);
134 "Functor is not valid. Only pairwise and triwise functors are supported. Please use a functor derived from "
135 "PairwiseFunctor or TriwiseFunctor.");
140template <
class Particle_T>
142 size_t numParticles{0};
143 if (behavior & IteratorBehavior::owned) {
144 numParticles += _logicHandler->getNumberOfParticlesOwned();
146 if (behavior & IteratorBehavior::halo) {
147 numParticles += _logicHandler->getNumberOfParticlesHalo();
150 if (behavior & ~(IteratorBehavior::ownedOrHalo)) {
152 "AutoPas::getNumberOfParticles() does not support iterator behaviors other than owned or halo.");
158template <
class Particle_T>
160 _logicHandler->reserve(numParticles);
163template <
class Particle_T>
165 _logicHandler->reserve(numParticles, numHaloParticles);
168template <
class Particle_T>
172 reserve(getNumberOfParticles(IteratorBehavior::owned) + numParticlesToAdd,
173 getNumberOfParticles(IteratorBehavior::halo) + numHalosToAdd);
174 AUTOPAS_OPENMP(parallel
for schedule(
static, std::max(1ul, collectionSize / omp_get_max_threads())))
175 for (auto i = 0; i < collectionSize; ++i) {
180template <
class Particle_T>
182 _logicHandler->addParticle(p);
185template <
class Particle_T>
186template <
class Collection>
188 addParticlesAux(particles.size(), 0, particles.size(), [&](
auto i) { addParticle(particles[i]); });
191template <
class Particle_T>
192template <
class Collection,
class F>
194 std::vector<char> predicateMask(particles.size());
197 for (
auto i = 0; i < particles.size(); ++i) {
198 if (predicate(particles[i])) {
199 predicateMask[i] =
static_cast<char>(
true);
202 predicateMask[i] =
static_cast<char>(
false);
206 addParticlesAux(numTrue, 0, particles.size(), [&](
auto i) {
207 if (predicateMask[i]) {
208 addParticle(particles[i]);
213template <
class Particle_T>
218template <
class Particle_T>
220 const std::array<double, 3> &boxMax) {
221 if (_allowedCellSizeFactors->isInterval()) {
223 "The allowed Cell Size Factors are a continuous interval but internally only those values that "
224 "yield unique numbers of cells are used. Resizing does not cause these values to be recalculated so "
225 "the same configurations might now yield different and non-unique numbers of cells!");
227 _logicHandlerInfo.boxMin = boxMin;
228 _logicHandlerInfo.boxMax = boxMax;
229 return _logicHandler->resizeBox(boxMin, boxMax);
232template <
class Particle_T>
237template <
class Particle_T>
242template <
class Particle_T>
243template <
class Collection>
245 addParticlesAux(0, particles.size(), particles.size(), [&](
auto i) { addHaloParticle(particles[i]); });
248template <
class Particle_T>
249template <
class Collection,
class F>
251 std::vector<char> predicateMask(particles.size());
254 for (
auto i = 0; i < particles.size(); ++i) {
255 if (predicate(particles[i])) {
256 predicateMask[i] =
static_cast<char>(
true);
259 predicateMask[i] =
static_cast<char>(
false);
263 addParticlesAux(0, numTrue, particles.size(), [&](
auto i) {
264 if (predicateMask[i]) {
265 addHaloParticle(particles[i]);
270template <
class Particle_T>
275template <
class Particle_T>
277 _logicHandler->decreaseParticleCounter(*iter);
278 internal::deleteParticle(iter);
281template <
class Particle_T>
283 _logicHandler->decreaseParticleCounter(*iter);
284 internal::deleteParticle(iter);
287template <
class Particle_T>
289 _logicHandler->decreaseParticleCounter(particle);
291 auto [particleDeleted, refStillValid] = _logicHandler->deleteParticleFromBuffers(particle);
292 if (not particleDeleted) {
293 refStillValid = _logicHandler->getContainer().deleteParticle(particle);
295 return refStillValid;
298template <
class Particle_T>
300 return _logicHandler->
begin(behavior);
303template <
class Particle_T>
305 return std::as_const(*_logicHandler).
begin(behavior);
308template <
class Particle_T>
310 const std::array<double, 3> &lowerCorner,
const std::array<double, 3> &higherCorner, IteratorBehavior behavior) {
314template <
class Particle_T>
316 const std::array<double, 3> &lowerCorner,
const std::array<double, 3> &higherCorner,
317 IteratorBehavior behavior)
const {
318 return std::as_const(*_logicHandler).
getRegionIterator(lowerCorner, higherCorner, behavior);
321template <
class Particle_T>
323 return _logicHandler->getContainer().getContainerType();
326template <
class Particle_T>
328 return _logicHandler->getContainer().getBoxMin();
331template <
class Particle_T>
333 return _logicHandler->getContainer().getBoxMax();
336template <
class Particle_T>
338 return _logicHandler->getContainer();
341template <
class Particle_T>
343 return _logicHandler->getContainer();
346template <
class Particle_T>
348 return _tuningManager->allSearchSpacesAreTrivial();
#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:47
std::vector< Particle_T > updateContainer()
Updates the container.
Definition: AutoPasImpl.h:214
void reserve(size_t numParticles)
Reserve memory for a given number of particles in the container and logic layers.
Definition: AutoPasImpl.h:159
void addParticles(Collection &&particles)
Adds all particles from the collection to the container.
Definition: AutoPasImpl.h:187
void addParticlesIf(Collection &&particles, F predicate)
Adds all particles for which predicate(particle) == true to the container.
Definition: AutoPasImpl.h:193
void addHaloParticle(const Particle_T &haloParticle)
Adds a particle to the container that lies in the halo region of the container.
Definition: AutoPasImpl.h:238
AutoPas(std::ostream &logOutputStream=std::cout)
Constructor for the AutoPas class.
Definition: AutoPasImpl.h:35
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:309
AutoPas & operator=(AutoPas &&other) noexcept
Move assignment operator.
Definition: AutoPasImpl.h:48
void init()
Initialize AutoPas.
Definition: AutoPasImpl.h:55
void forceRetune()
Force the internal tuner to enter a new tuning phase upon the next call to computeInteractions().
Definition: AutoPasImpl.h:233
size_t getNumberOfParticles(IteratorBehavior behavior=IteratorBehavior::owned) const
Returns the number of particles in this container.
Definition: AutoPasImpl.h:141
void deleteAllParticles()
Deletes all particles.
Definition: AutoPasImpl.h:271
bool computeInteractions(Functor *f)
Function to iterate over all inter-particle interactions in the container This function only handles ...
Definition: AutoPasImpl.h:118
void addParticle(const Particle_T &p)
Adds a particle to the container.
Definition: AutoPasImpl.h:181
IteratorT begin(IteratorBehavior behavior=IteratorBehavior::ownedOrHalo)
Iterate over all particles by using for(auto iter = autoPas.begin(); iter.isValid(); ++iter)
Definition: AutoPasImpl.h:299
std::vector< std::unique_ptr< TuningStrategyInterface > > TuningStrategiesListType
Type for the member holding all tuning strategies.
Definition: AutoTuner.h:45
Public iterator class that iterates over a particle container and additional vectors (which are typic...
Definition: ContainerIterator.h:95
Functor base class.
Definition: Functor.h:41
double getCutoff() const
Getter for the functor's cutoff.
Definition: Functor.h:177
static void create(std::ostream &logOutputStream=std::cout)
Explicitly initialize/reset the logger to write to an output stream.
Definition: Logger.h:68
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:38
static void exception(const Exception e)
Handle an exception derived by std::exception.
Definition: ExceptionHandler.h:64
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:84
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 std::set< VectorizationPatternOption > &allowedVecPatternOptions, 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:34
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