All Projects → AutoPas → AutoPas

AutoPas / AutoPas

Licence: BSD-2-Clause license
Autopas is a node-level auto-tuned particle simulation library developed in the context of the TaLPas project.

Programming Languages

C++
36643 projects - #6 most used programming language
CMake
9771 projects

Projects that are alternatives of or similar to AutoPas

ls1-mardyn
ls1-MarDyn is a massively parallel Molecular Dynamics (MD) code for large systems. Its main target is the simulation of thermodynamics and nanofluidics. ls1-MarDyn is designed with a focus on performance and easy extensibility.
Stars: ✭ 17 (-10.53%)
Mutual labels:  scientific-computing, autopas
workshop
Workshop: Micromagnetics with Ubermag
Stars: ✭ 19 (+0%)
Mutual labels:  scientific-computing
sparse
Sparse matrix formats for linear algebra supporting scientific and machine learning applications
Stars: ✭ 136 (+615.79%)
Mutual labels:  scientific-computing
steep
⤴️ Steep Workflow Management System – Run scientific workflows in the Cloud
Stars: ✭ 30 (+57.89%)
Mutual labels:  scientific-computing
SciLean
Scientific computing in Lean 4
Stars: ✭ 86 (+352.63%)
Mutual labels:  scientific-computing
PyCORN
A script to extract data from ÄKTA/UNICORN result-files (.res)
Stars: ✭ 30 (+57.89%)
Mutual labels:  scientific-computing
jigsaw-matlab
MATLAB bindings for JIGSAW: a Delaunay-based unstructured mesh generator.
Stars: ✭ 57 (+200%)
Mutual labels:  scientific-computing
datajoint-python
Relational data pipelines for the science lab
Stars: ✭ 140 (+636.84%)
Mutual labels:  scientific-computing
scilab
Open source, cross-platform numerical computational package and a high-level, numerically oriented programming language.
Stars: ✭ 52 (+173.68%)
Mutual labels:  scientific-computing
prmon
Standalone monitor for process resource consumption
Stars: ✭ 37 (+94.74%)
Mutual labels:  scientific-computing
adorad
Fast, Expressive, & High-Performance Programming Language for those who dare
Stars: ✭ 54 (+184.21%)
Mutual labels:  scientific-computing
thread-pool
BS::thread_pool: a fast, lightweight, and easy-to-use C++17 thread pool library
Stars: ✭ 1,043 (+5389.47%)
Mutual labels:  scientific-computing
Tensor
A library and extension that provides objects for scientific computing in PHP.
Stars: ✭ 146 (+668.42%)
Mutual labels:  scientific-computing
getfem
Mirror of GetFEM repository
Stars: ✭ 23 (+21.05%)
Mutual labels:  scientific-computing
stat-mech-van
Code for 'Solving Statistical Mechanics using Variational Autoregressive Networks'.
Stars: ✭ 73 (+284.21%)
Mutual labels:  scientific-computing
Julia-data-science
Data science and numerical computing with Julia
Stars: ✭ 54 (+184.21%)
Mutual labels:  scientific-computing
bandicoot-code
Bandicoot: GPU accelerator add-on for the Armadillo C++ linear algebra library
Stars: ✭ 21 (+10.53%)
Mutual labels:  scientific-computing
AutoWIG
Automatic Wrapper and Interface Generator
Stars: ✭ 107 (+463.16%)
Mutual labels:  scientific-computing
OpenSkyStacker
Multi-platform stacker for deep-sky astrophotography.
Stars: ✭ 80 (+321.05%)
Mutual labels:  scientific-computing
boxtree
Quad/octree building for FMMs in Python and OpenCL
Stars: ✭ 52 (+173.68%)
Mutual labels:  scientific-computing

AutoPas

AutoPas is a node-level auto-tuned particle simulation library developed in the context of the TaLPas project. CI Status

Documentation

The documentation can be found at our website: https://autopas.github.io/doxygen_documentation/git-master/

Alternatively you can build the documentation on your own:

  • requirements: Doxygen
  • make doc_doxygen

Requirements

  • CMake 3.14 or newer
  • make (build-essentials) or ninja
  • a C++17 compiler (gcc9, clang9, and icpc 2019 are tested.)

Building AutoPas

build instructions for make:

mkdir build
cd build
cmake ..
make

if you want to use a specific compiler, specify it at the first CMake call, e.g.:

mkdir build
cd build
CC=clang CXX=clang++ cmake ..
make

if you would like to use ninja instead of make:

mkdir build
cd build
cmake -G Ninja ..
ninja

Building AutoPas on a Cluster

HPC clusters often use module systems. CMake is sometimes not able to correctly detect the compiler you wished to use. If a wrong compiler is found please specify the compiler explicitly, e.g. for gcc:

mkdir build
cd build
CC=`which gcc` CXX=`which g++` cmake ..
make

AutoPas relies on a small number of dependencies. By default, AutoPas looks for installed versions of those libraries, but it can also be forced to (selectively) use bundled versions. To make use of this feature, call cmake with:

cmake -D spdlog_ForceBundled=ON    # replace spdlog by the lib you want to force

Or better, have a look at the variables exposed in ccmake.

Testing

AutoPas uses googletest as testing framework and exposes tests to ctest, the CMake test driver.

Running Tests

There are multiple possibilities. In order of recommendation:

  1. Using ctest:
    ctest # add --verbose for more details on the tests
    To only run specific tests use arguments like -R (run tests matching regex) and -E (exclude tests matching regex)
    ctest -R 'Array.*testAdd' -E 'Double'
  2. Using the make target:
    make test
  3. Directly launching the test executable:
    tests/testAutopas/runTests
    To only run specific tests use arguments
    tests/testAutopas/runTests --gtest_filter=ArrayMathTest.testAdd*

Debugging Tests

Many IDEs (e.g., CLion) have integrated support for googletest, and you can debug the tests directly within the IDE.

If you prefer gdb:

  1. Find out the command to start your desired test with -N aka. --show-only:
    ctest -R 'Array.*testAdd' -N
  2. Start the test with gdb
    gdb --args ${TestCommand}

Examples

As AutoPas is only a library, it is not able to run simulations by itself. We have, however, included a few example proxy applications in the examples directory. The examples include:

  • md-flexible: Molecular dynamics simulations with single centered Lennard-Jones particles.
  • Smoothed particle hydrodynamics simulations

Using AutoPas

Steps to using AutoPas in your particle simulation program:

Custom Particles

First you will need to define a particle class which will be passed to AutoPas as template Argument. For that we provide some basic Particle classes defined in src/autopas/molecularDynamics or src/autopas/sph that you can use either directly or you can write your own Particle class by inheriting from one of the provided classes or from autopas::Particle.

Important parts to implement:

  • enum AttributeNames
  • Definition of a matching SoAArraysType
  • Getter and setter connecting the AttributeNames and actual members.

Custom Functors

Once you have defined your particle you can start with the functor class.

Definition

Important parts to implement:

  • Actual force calculations: AoSFunctor() and all Versions of SoAFunctor*()
  • Newton3 characteristics of the force: allowsNewton3() and allowsNonNewton3()
  • Input and output variables of the force calculation via: getComputedAttr() and getNeededAttr()

Usage

Each functor is applied to AutoPas via:

autoPas.iteratePairwise(&myFunctor);

Particle Ownership

Particles saved in an AutoPas container can be one of two possible states:

  • owned: Particles that belong to this AutoPas instance. These particles are typically inside the boundary of the AutoPas instance. If a particle is added via addParticle(), it is automatically added as an owned particle. An owned particle can explicitly be removed by deleting the particle using an iterator (autoPas.deleteParticle(iterator)). On an update of the AutoPas container (using updateContainer()) owned particles that moved outside the boundary of its parent AutoPas container are returned.
  • halo: Particles that do not belong to the current AutoPas instance. These normally are ghost particles arising from either periodic boundary conditions or particles of a neighboring AutoPas object (if you split the entire domain over multiple AutoPas objects, i.e., you use a domain decomposition algorithm). The halo particles are needed for the correct calculation of the pairwise forces. On update of the AutoPas container, halo particles are deleted (see Simulation Loop).
  • dummy: Particles that are deleted or that act as filler for certain algorithms. These particles do not affect the force calculation.

Iterating Through Particles

Iterators to iterate over particle are provided. The particle can be accesses using iter-> or *iter. When created inside a OpenMP parallel region, work is automatically spread over all threads.

#pragma omp parallel
for(auto iter = autoPas.begin(); iter.isValid(); ++iter) {
  // user code:
  auto position = iter->getR();
}

For convenience the end() method is also implemented for the AutoPas class so you might also use range-based for loops:

#pragma omp parallel
for(auto& particle : autoPas) {
  // user code:
  auto position = particle.getR();
}

To iterate over a subset of particles, the getRegionIterator(lowCorner, highCorner) method can be used:

#pragma omp parallel
for(auto iter = autoPas.getRegionIterator(lowCorner, highCorner); iter != autoPas.end(); ++iter) {
  // user code:
  auto position = iter->getR();
}

Both begin() and getRegionIterator() can also take the additional parameter IteratorBehavior, which indicates over which particles the iteration should be performed. See autopas::IteratorBehavior for possible options and details. The default parameter is ownedOrHalo, which is also used for range-based for loops.

Analogously to begin(), cbegin() is also defined, which guarantees to return a const_iterator.

Iterators are not guaranteed to be valid after particle insertion. However, particle deletion while iterating is supported via autoPas.deleteParticle(iterator).

Simulation Loop

One simulation loop should always consist of the following phases:

  1. Updating the Container:

    auto invalidParticles = autoPas.updateContainer();

    This call will trigger an update of the container inside AutoPas. The returned vector invalidParticles consists of the particles that were previously owned by this AutoPas container but have left the boundary of this container, i.e., their current position resides outside the container.

  2. Handling the leaving particles

    • Apply boundary conditions on them
    • Potentially send them to other mpi-processes, skip this if MPI is not needed
    • Add them to the containers using
      autoPas.addParticle(particle)
  3. Handle halo particles:

    • Identify the halo particles by use of AutoPas' iterators and send them in a similar way as the leaving particles.
    • Add the particles as haloParticles using
      autoPas.addHaloParticle(haloParticle)
  4. Perform an iteratePairwise step.

    autoPas.iteratePairwise(functor);

Inserting additional particles

Additional particles (e.g. through a grand-canonical thermostat), can be inserted at any point in the simulation loop. For periodic boundary conditions, or in an MPI-parallel simulation, you, as the user, is responsible for inserting the appropriate halo particles.

Internal Verlet-like container behavior

The behavior described in this section is normally opaque to users of AutoPas. The only exception to this rule is that particles should not be moved more than skin/2 within the specified Verlet rebuild frequency. This restriction is due to the internally used Verlet-like container behavior in which the actual container is not updated in every time step and particles are not necessarily sorted into the correct cells. This allows the reuse of neighbor lists throughout multiple time steps and is necessary for a performant implementation of our Verlet containers.

We do, however, still provide a linked cells-like interface to a user of AutoPas, i.e., a container appears to be updated every time step, leaving particles are returned at every time step and particles can be deleted and added independently to the internal state of the container. Internally we make this possible, by using partial container updates, which collect leaving particles while marking left particles and halo particles as dummy. Additionally, we maintain a particle buffer that allows to add particles to AutoPas without modifying the underlying container. This particle buffer is considered in the force calculation and when iterating through particles.

Another performance optimization is made possible by allowing to reuse the neighbor list entries of halo particles of previous time steps. While the actual particles have already been implicitly deleted (marked as dummy), they still exist. For their reuse, we try to add halo particles in their original memory location. If that is, however, not possible, we add them to another particle buffer (the haloParticleBuffer).

Additional information can be found in PR 642

Using multiple functors

AutoPas is able to work with simulation setups using multiple functors that describe different forces. A good demonstration for that is the sph example found under examples/sph or examples/sph-mpi. There exist some things you have to be careful about when using multiple functors:

  • If you use multiple functors it is necessary that all functors support the same newton3 options. If there is one functor not supporting newton3, you have to disable newton3 support for AutoPas by calling
    autoPas.setAllowedNewton3Options({false});
  • If you have n functors within one iteration and update the particle position only at the end or start of the iteration, the rebuildFrequency and the samplingRate have to be a multiple of n.
  • Functors must be marked as (not) relevant for tuning by specifying Functor::isRelevantForTuning(). Functors marked as relevant should have a near-identical performance profile otherwise the sampling of configurations will be distorted. It is recommended, to only mark the most expensive functor as relevant.

Developing AutoPas

Please look at our contribution guidelines.

For profiling the compile-time, the cmake option AUTOPAS_COMPILE_TIME_PROFILING can be turned on. This enables gcc's -ftime-report and clang's -ftime-trace. It is recommended to use clang, as its output is more detailed. -ftime-trace generates a .json file for each compilation unit next to the generated object file (inside one of the CMakeFiles directories). Chrome has a built-in tool for viewing these files in a flame graph. It can be accessed through the URL chrome://tracing.

Acknowledgements

This work was financially supported by:

  • the Federal Ministry of Education and Research, Germany, project “Task-based load balancing and auto-tuning in particle simulations” (TaLPas) 8 , grant numbers 01IH16008A and 01IH16008B.

Papers to cite

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].