![]() |
Peano
|
Peano is typically acquired through a git clone. You have to clone this archive first. We grant access free of charge, and the repository is public. However, we ask users to sign up for the software if they intend to push modifications to the code - which we very much appreciate. This way, we can report to funding agencies how frequently the software is used, and I also have at least some ideas about which application areas benefit from the software and where it is actively used and developed. If you do not intend to modify the core code base, you can just clone the code anonymously.
git clone https://gitlab.lrz.de/hpcsoftware/Peano.git
I still maintain the "old" Peano in the repository (version 3). However, we now work with the fourth generation of Peano (p4). Therefore, the default master is called p4
.
Peano's core is plain C++17/C++20 code. We however use a whole set of tools around it.
You will also need Doxygen if you want to create HTML pages of the documentation yourself. Unless you work exclusively with the Peano core in C++, you will have to ensure that your Python installation meets all requirements (see remarks below).
We test and maintain Peano for Linux only. If you prefer Windows or MacOS, it should work as long as you provide the mandatory tools from above, but we won't be able to help. Peano is well-integrated with a number of third party tools, but these are all optional.
We currently provide support for Autotools and CMake with Peano. After you have cloned the repository, you will have to to set up your installation using either of these two build systems. This will allow you to build the Peano core libraries and is a step required before you use any application or tool built on top of Peano such as ExaHyPE or our PETSc multigrid environment.
autoconf
, automake
and libtool
.These steps should only be required once, unless you push major revisions to the development branch.
The --help
option should give you some information about the available variants of Peano, its extensions and toolboxes.
It is recommended that you start a first test without any additional flavours of Peano, i.e. to work with a plain ./configure
call. Once the tests pass, you may add further options (IO) and/or parallelisation. Please note that the baseline configure is not sufficient for most applications, as it builds merely Peano's core libraries.
Besides Peano's toolboxes and extensions, compilers, linkers and both compiler and linker flags can be changed by resetting the corresponding environment variables (such as CXX
or LDFLAGS
or CCFLAGS
) prior to the configure call. Alternatively, you can pass the variables to be used to configure
through arguments (./configure CXX=icpc ...
, e.g.). Please consult the --help
output for details.
Most Linux tools prefer you to specify a dedicated installation directory via --prefix
. For Peano, things are slightly different: Peano is a mere set of libraries, i.e. not "useful" per se. It is applications built on top of Peano that become tools that you might later want to install/deploy on your system. Therefore, I ship Peano with static libraries only, and most users work with the code in the download/installation directory. So no need to specify a proper installation directory via --prefix
.
Using CMake is again relatively simple. First, we create a new directory. Typically it is recommended to create a new build directory within the Peano repository's clone:
Alternatively, you can also create a new build directory anywhere else on your workstation:
where Peano-src points to the checkout.
Next, you might want to type in cmake help
but this might be a little bit overwhelmning. Try
instead, where you replace Peano-dir with the directory of Peano's sources. Handing in .. does the job for most of the setups.
Configure by pressing c and then q to finish the configuration. Next, continue with building the code.
Once the configuration has been successful, a simple
make
should build the core. It also builds some examples and all the extensions and toolboxes you have manually enabled. All of these go into static libraries. The code is not small and you thus might prefer
make -jx
with x being the number of parallel builds to use.
Once you have compiled, we recommend that you run all tests using
make check
for the autotools or
make test
for CMake.
The call launches Peano's unit test, i.e. all the unit tests for the core plus the extensions that you have enabled.
The test target is written such that it works out-of-the-box for non-MPI calls. If you have configured with MPI, then the unit tests will fail. But this does not mean that the unit tests are broken. It is simply due to the fact that the Makefile's test target does not know that you have to use the mpirun
prefix. To make a long story short: If you use MPI and you want to run the unit tests, you have to do so manually.
To run 2D and 3D tests individually, use
src/unittests/UnitTests2d src/unittests/UnitTests3d
You can run these builds with different core counts and also MPI support if you have compiled with MPI. The executables contain both node correctness tests and MPI ping-pong tests, i.e. you can both assess a valid build plus a working MPI environment.
CMake allows to install all targets in a self-contained bundle. You need to specify the installation path by amending the CMAKE_INSTALL_PREFIX
variable:
The autotools allow you to do the same by passing in –prefix=mydir into the ./configure command and then you call
Peano's Python front-end (API) is developed with Python 3. Python 2 is not supported.
Our code base relies on several Python packages. There's a requirements specification file which you can use to ensure that all requirements are met:
where the requirements.txt file resides within Peano's root directory. Depending on your system, you might have to use pip3 or install the packages in your user space by adding --user
.
The easiest way to install the Peano Python packages and to set the Python path directly is to navigate to myPeanoDirectory/
first (you're in the right place if you see the pyproject.toml
file), and then run
pip3 install -e .
to install the packages.
Note:
-e
flag does). Otherwise, you'll have to re-install the packages every time something is changed.As an alternative to installing the packages, you can modify your Python path manually. There are multiple ways to do so. The standard way is to set the PYTHONPATH
, e.g.:
export PYTHONPATH=$PYTHONPATH:myPeanoDirectory/python
This can even be done in the .bashrc
. If you "install" the Peano Python packages this way, you will also need to manually install additional dependencies, as noted below.
Peano currently relies on the following Python packages/projects:
If you don't use Fortran in your own code, ignore this section.
Peano's core does not use any Fortran at all. However, some users use Fortran for their domain-specific programming. If you want to have a seemless integration of your particular Fortran choice through 's Python API, invoke ./configure
ensuring that the Fortran variables—in particular the environment variable FC
identifying the compiler—are properly set.
For many codes and the GNU Fortran compiler, you need the flag -fdefault-real-8
. You can export FCFLAGS
and make it contain this argument before you invoke configure
. As the Peano's core does not use Fortran—it is only applications built on top of —you can redefine the flags later on.
Please find below a sample shell script for Autotools that will install Peano with ExaHyPE enabled. Here we use GCC and G++ as the C and C++ compiler, as well as OpenMP for the multithreading support. We also include some flags to suppress warnings.
Please find below a sample shell script for CMake that will install Peano with ExaHyPE enabled. Here we use GCC and G++ as the C and C++ compiler, as well as OpenMP for the multithreading support. All required flags are automatically added by CMake.