This document summarizes everything you need to know to get started with using or extending the DAPHNE system.
Please ensure that your development system meets the following requirements before trying to build the system.
(*) You can view the version numbers as an orientation rather than a strict requirement. Newer versions should work as well, older versions might work as well.
OS | distribution/version known to work (*) |
---|---|
GNU/Linux | Ubuntu 20.04.1 with kernel 5.8.0-43-generic |
tool/lib | version known to work (*) | comment |
---|---|---|
clang | 10.0.0 | |
cmake | 3.17 | On Ubuntu 20.04, install by sudo snap install cmake --classic to fulfill the version requirement; apt provides only version 3.16.3. |
git | 2.25.1 | |
lld | 10.0.0 | |
ninja | 1.10.0 | |
pkg-config | 0.29.1 | |
python3 | 3.8.5 | |
numpy | 1.19.5 | |
java (e.g. openjdk) | 11 (1.7 should be fine) | |
gfortran | 9.3.0 | |
uuid-dev |
- about 2.1 GB of free disk space (mostly due to MLIR/LLVM)
The DAPHNE system is based on MLIR, which is a part of the LLVM monorepo. The LLVM monorepo is included in this repository as a submodule. Thus, clone this repository as follows to also clone the submodule:
git clone --recursive https://github.com/daphne-eu/daphne.git
Upstream changes to this repository might contain changes to the submodule (we might have upgraded to a newer version of MLIR/LLVM). Thus, please pull as follows:
# in git >= 2.14
git pull --recurse-submodules
# in git < 2.14
git pull && git submodule update --init --recursive
# or use this little convenience script
./pull.sh
Simply build the system using the build-script without any arguments:
./build.sh
When you do this the first time, or when there were updates to the LLVM submodule, this will also download and build the third-party material, which might increase the build time significantly. Subsequent builds, e.g., when you changed something in this repository, will be much faster.
If the build fails in between (e.g., due to missing packages), multiple build directories (e.g., daphne, antlr, llvm) require cleanup. For convenience, you can call the following to remove them all.
./build.sh --clean
See this page for more information.
./test.sh
We use catch2 as the unit test framework. You can use all command line arguments of catch2 with test.sh
.
Write a little DaphneDSL script or use scripts/examples/hello-world.daph
...
x = 1;
y = 2;
print(x + y);
m = rand(2, 3, 100.0, 200.0, 1.0, -1);
print(m);
print(m + m);
print(t(m));
... and execute it as follows: build/bin/daphne scripts/examples/hello-world.daph
.
Building and running with containers [Alternative path for building and running the system and the tests]
If one wants to avoid installing dependencies and avoid conflicting with his/her existing installed libraries, one may use containers.
- you need to install Docker or Singularity: Docker version 20.10.2 or higher | Singularity version 3.7.0-1.el7 or higher are sufficient
- you can use the provided docker file to create an image that contains all dependencies as follows:
cd daphne/deploy
docker build -t <ImageTag> .
#the image can be built from the dockerhub docker://ahmedeleliemy/test-workflow:latest as well
docker run -v absolute_path_to_daphne/:absolute_path_to_daphne_in_the_container -it <ImageTag> bash
[root@<some_container_ID>]cd absolute_path_to_daphne_in_the_container
[root@<some_container_ID>]./build.sh #or ./test.sh
- you can also use Singularity containers instead of docker as follows:
singularity build <ImageName.sif> docker://ahmedeleliemy/test-workflow
#one can also use [Singularity python](https://singularityhub.github.io/singularity-cli/)
#to convert the provided Dockerfile into Singularity recipe
singularity shell <ImageName.sif>
Singularity> cd daphne
Singularity> ./build.sh #or ./test.sh
- Because the container instance works on the same folder, if one already built the system outside the container, it is recommended to clean all build files to avoid conflicts.
- One may also do the commits from within the containers as normal.
As an entry point for exploring the source code, you might want to have a look at the code behind the daphne
executable, which can be found in src/api/cli/daphne.cpp
.
On the top-level, there are the following directories:
build
: everything generated during build (executables, libraries, generated source code)doc
: documentationsrc
: the actual source code, subdivided into the individual components of the systemtest
: test casesthirdparty
: required external software
You might want to have a look at
- the documentation
- the contribution guidelines
- the open issues