Getting startedο
The fiction framework provides a stand-alone CLI tool as well as a C++20 header-only library and a Python module which can be used in external projects. Additionally, we provide an experimentation playground that can be used to quickly prototype new ideas or script evaluations.
We are continuously testing on Ubuntu, macOS, and Windows with multiple compilers and various Python versions. See the badges in the README file for more information.
Quick Startο
To help you getting started with fiction, pick the interface that best fits your use case:
Goal |
Recommended Path |
Section |
|---|---|---|
Try the tool immediately |
π³ Docker CLI image |
|
Full-featured local CLI build |
π» Native build |
|
Integrate into a C++ project |
π Header-only library |
|
Script / notebooks / rapid prototyping |
π Python bindings (PyPI) |
For a full CLI command list or API reference, see the respective documentation sections.
CLI (Docker)ο
This is the fastest zero-install path. We release pre-built images of the latest CLI on Docker Hub. Make sure you have Docker installed on your local system.
Pull the latest image:
$ docker pull mawalter/fiction:latest
Run the interactive CLI session:
$ docker run --rm -it mawalter/fiction
Internally, the repository lives at /app/fiction.
CLI (Source)ο
When you want to add your own algorithms or contribute to the project, you should build fiction from source.
Compilation requirementsο
The repository should always be cloned recursively with all submodules:
$ git clone --recursive https://github.com/cda-tum/fiction.git
$ cd fiction
Several third-party libraries will be cloned within the libs folder. The cmake build process will take care of
them automatically. Should the repository have been cloned before, the commands:
git submodule update --init --recursive
will fetch the latest version of all external modules used. Additionally, only CMake and a C++20 compiler are
required for the C++ part. If you want to work with the Python bindings, you need a Python 3.9+ installation.
At the time of writing, for parallel STL algorithms to work when using GCC, the TBB library (libtbb-dev on Ubuntu) is
needed. It is an optional dependency that can be installed for a performance boost in certain scenarios. For your
preferred compiler, see the current implementation state of P0024R2.
On Ubuntu, all required and optional dependencies can be installed via:
sudo apt-get install build-essential cmake python3 libreadline-dev libtbb-dev
Building the CLIο
For auto-completion in the CLI, it is recommended but not required to install the libreadline-dev package (see above).
Configure and build with CMake:
$ cmake -S . -B build
$ cmake --build build --parallel
Several options can be toggled during the build. For a more interactive interface, please refer to ccmake for a
full list of supported customizations.
CMake Presetsο
The repository ships a CMakePresets.json with a
curated set of configurations for common tasks, so that you do not have to remember all relevant -D flags
yourself. List them with:
$ cmake --list-presets
Noteworthy presets include dev (a quick Debug build with only the CLI and tests enabled), dev-full (the same,
but with Z3 and ALGLIB also enabled), dev-asan (dev with sanitizers), tests-slim/tests-full
(test-only builds, without/with all optional components, for the fastest edit-compile-test loop), pyfiction
(mirrors the pyproject.toml configuration for iterating on the Python bindings directly with CMake), and
release (an optimized, IPO-enabled build). The ci-* and coverage presets provide the shared baseline
configuration used by the corresponding GitHub Actions workflows; each job layers a few compiler- and
platform-specific -D overrides on top, so reproducing a specific failing job locally may require adding those
too, e.g.:
$ cmake -S . --preset ci-debug
$ cmake --build --preset ci-debug
$ ctest --preset ci-debug
Any preset can still be combined with additional -D overrides on the command line.
Run the CLI:
$ build/cli/fiction
Here is an example of running fiction to perform a full physical design flow on a QCA circuit layout that can afterward be simulated in QCADesigner:
See CLI (Docker) for a full user guide.
C++ Libraryο
If you want to use fiction as a dependency in your project to utilize its header-only library for your own tool.
Add fiction as a sub-directory to your CMake project and link against libfiction (assuming your project is
called fanfiction):
add_subdirectory(fiction)
target_link_libraries(fanfiction PRIVATE libfiction)
Note
The command target_link_libraries must be called after the respective add_executable statement that defines
fanfiction.
By default fictionβs CLI is enabled and will be built, which can be time-consuming. If you do not need it, you can
disable it by passing -DFICTION_CLI=OFF to your cmake call or adding
set(FICTION_CLI OFF CACHE BOOL "" FORCE) before add_subdirectory(fiction/).
Then include what you need:
#include <fiction/layouts/cell_level_layout.hpp>
#include <fiction/layouts/clocking_scheme.hpp>
#include <fiction/technology/qca_one_library.hpp>
#include <fiction/io/write_qca_layout.hpp>
#include <fiction/...>
Everything that can safely be used is directly located inside the fiction namespace.
Python Bindingsο
Ideal for notebooks, exploratory scripts, and integration with Python tooling.
Install the library from PyPI:
$ pip install mnt.pyfiction
Import it in your script:
from mnt import pyfiction
The Python synopsis is modeled after the C++ API to make it feel as familiar as possible. However, all available Python bindings are additionally documented together with the C++ code on this site to make it easier to get started. For each module, you can toggle between the two languages using the tabs.
Note
The fiction framework is primarily developed for C++ as a header-only library. The Python bindings are a thin wrapper around the C++ code. We try our best to keep the bindings in sync with the C++ code, and to expose most of fictionβs functionality in both C++ and Python. This is, unfortunately, not always possible. Should you encounter features that are not (yet) available in pyfiction, please open an issue on GitHub.
Virtual Environment Setupο
In order to set up a virtual environment on UNIX-like systems, you can use the following commands:
$ python3 -m venv venv
$ source venv/bin/activate
If you are using Windows, you can use the following commands instead:
$ python3 -m venv venv
$ venv\Scripts\activate.bat
Bindings Architectureο
If you want to add or extend Python bindings, the code under bindings/mnt/pyfiction/ follows a source-based
layout, one translation unit per binding, chosen to keep compile time and memory usage manageable as the number of
bindings grows:
bindings/mnt/pyfiction/
βββ CMakeLists.txt
βββ pyfiction.cpp # top-level NB_MODULE entry point
βββ src/pyfiction/
βββ algorithms/
β βββ register_algorithms.cpp # calls register_path_finding(m), etc.
β βββ path_finding/
β β βββ a_star.cpp # defines a_star(nanobind::module_&)
β β βββ register_path_finding.cpp # calls a_star(m), distance(m), ...
β βββ ...
βββ layouts/
β βββ ...
βββ ...
Each leaf .cpp file under src/pyfiction/<module>/<submodule>/ defines exactly one binding function (e.g.
void a_star(nanobind::module_& m)) that binds a single class, function, or closely related group thereof. Each
directory has a register_<name>.cpp that forward-declares and calls the binding functions of its leaf files (and
the register_<name> functions of any nested submodule directories); the top-level pyfiction.cpp calls each
top-level moduleβs register_<module>(m) from its NB_MODULE block. New source files do not need to be
added anywhere manually: CMakeLists.txt collects them automatically via file(GLOB_RECURSE
FICTION_PYFICTION_SOURCES CONFIGURE_DEPENDS "src/*.cpp"), so re-running cmake picks up new files on its own β
you only need to wire the new function into the relevant register_<name>.cpp and, if needed, forward-declare it
there.
Note
The Python-facing mnt.pyfiction namespace must not change shape when adding new bindings. In particular, do
not introduce new Python-level submodules (e.g. mnt.pyfiction.algorithms) β all registration functions attach
their bindings to the single top-level module object that is threaded through the call chain, matching the
existing flat API that user scripts depend on.
Note
The bindings are built with nanobind, which (unlike the previous
pybind11-based setup) is resolved as an installed Python package rather
than fetched by CMake. When configuring the pyfiction preset directly (e.g. for IDE-based iteration, outside
of pip install), make sure the Python interpreter CMake picks up has nanobind installed β the projectβs
uv-managed virtual environment already does, so pass
-DPython_EXECUTABLE=<path_to_repo>/.venv/bin/python3 (or the equivalent .venv\Scripts\python.exe on
Windows) if CMake would otherwise pick up a different interpreter.
β
Advanced Configurationο
Enabling dependent functionsο
Some functionalities require the presence of third-party dependencies. In the following, it is discussed how to enable them.
SMT-based exact P&Rο
The exact placement and routing algorithm utilizes the SMT solver Z3.
Follow the installation instructions and call
sudo make install to install headers, scripts, and the binary.
Note
Be sure to compile Z3 in Release mode to avoid performance issues when running fictionβs dependent functions!
This can be achieved by passing -DCMAKE_BUILD_TYPE=Release to Z3βs cmake call.
Finally, before building fiction, pass -DFICTION_Z3=ON to the cmake call. It should be able to find
Z3βs include path and link against the binary automatically if installed correctly. Otherwise, you can use
-DZ3_ROOT=<path_to_z3_root> to set Z3βs root directory that is to be searched for the installed solver.
ABC callbackο
ABC by Alan Mishchenko can be used as a callback for logic synthesis and
optimization from within the fiction CLI. It must be compiled and installed manually and can be enabled by passing
-DFICTION_ABC=ON to the cmake call. If ABC is not in your PATH, you can specify the path to the folder
where the abc binary is located by passing -DABC_ROOT=<path_to_abc_root> to the cmake call. On the other
hand, if you installed ABC in a default location on UNIX-like operating systems (e.g., /usr/bin/
or /usr/local/bin/), it should be detected automatically without the need to pass the root directory.
Note
Be sure to compile ABC in Release mode to avoid performance issues during synthesis and optimization!
This can be achieved by passing -DCMAKE_BUILD_TYPE=Release to ABCβs cmake call.
For information on usage, see the ABC callback section in the CLI documentation.
ALGLIB-dependent ClusterComplete exact SiDB simulationο
The ClusterComplete exact SiDB simulation algorithm relies on functionality offered by ALGLIB by the ALGLIB Project. When enabled, it will be downloaded automatically and linked against fiction.
To enable it, before building fiction, pass -DFICTION_ALGLIB=ON to the cmake call.
Building experimentsο
The experiments folder provides a playground for quickly scripting some ideas by plugging algorithms together.
A fictionlib_demo.cpp demonstrates the usage. Any *.cpp file that is placed in on of its sub-folders is
automatically linked against libfiction and compiled as a stand-alone binary. Simply add a main function and
include the desired header files to get started:
#include <fiction/layouts/cell_level_layout.hpp>
#include <fiction/layouts/clocking_scheme.hpp>
#include <fiction/technology/qca_one_library.hpp>
#include <fiction/io/write_qca_layout.hpp>
#include <fiction/...>
int main(int argc, char* argv[])
{
// your code goes here
}
Each file can be built individually via CMake:
$ cmake -S . -B build -DFICTION_EXPERIMENTS=ON
$ cmake --build build --parallel
Building testsο
Unit tests can be built with CMake via a respective flag on the command line and executed via ctest:
$ cmake -S . -B build -DFICTION_TEST=ON
$ cmake --build build --parallel
$ ctest
Building code benchmarksο
Using Catch2βs micro-benchmarking feature, you can compile and run code tests that evaluate the performance of
certain code constructs. The test/benchmark folder provides a selection of benchmarks we were running to evaluate
the performance of our code during development. Any *.cpp file that is placed in that folder is automatically
linked against fiction and compiled as a stand-alone binary using the following commands:
$ cmake -S . -B build -DFICTION_BENCHMARK=ON
$ cmake --build build --parallel
Noteworthy CMake optionsο
The following CMake options are available which have a potential positive impact on the build process, debugging attempts, or performance of the resulting binaries:
-DFICTION_ENABLE_IPO=ON: Enable IPO/LTO to improve performance of resulting binaries on some systems.-DFICTION_ENABLE_PCH=ON: Enable precompiled headers (PCH) to speed up compilation.-DFICTION_ENABLE_UNITY_BUILD=ON: Enable unity builds to speed up compilation.-DFICTION_ENABLE_SANITIZER_ADDRESS=ON: Enable the address sanitizer to detect memory issues.-DFICTION_ENABLE_SANITIZER_LEAK=ON: Enable the leak sanitizer to detect memory leaks.-DFICTION_ENABLE_SANITIZER_UNDEFINED=ON: Enable the undefined behavior sanitizer to detect undefined behavior.-DFICTION_ENABLE_SANITIZER_THREAD=ON: Enable the thread sanitizer to detect multithreading-related problems.-DFICTION_ENABLE_SANITIZER_MEMORY=ON: Enable the memory sanitizer to detect uninitialized reads.-DFICTION_ENABLE_JEMALLOC=ON: Enable the usage of jemalloc by Jason Evans to speed upmallocin parallelized processes.
Usage of jemallocο
While enabling jemalloc through the above CMake is not beneficial to every application (and may add runtime due to overhead), it can bring significant runtime improvements to some applications. In particular, it is recommended to use jemalloc for parallelized applications in which allocations are predominantly non-ephemeral.
Note
Windows users need to install jemalloc manually. It can be done by following these steps.
Uninstallο
Since all tools were built locally, simply delete the git folder cloned initially to uninstall this project.