![]() |
Taskflow
3.2.0-Master-Branch
|
This page describes how to set up Taskflow in your project. We will also go through the building process of unit tests and examples.
To use Taskflow, you only need a compiler that supports C++17:
Taskflow works on Linux, Windows, and Mac OS X.
Taskflow is header-only and there is no need for installation. Simply download the source and copy the headers under the directory taskflow/
to your project.
Taskflow is written in C++17 and is built on top of C++ standardized threading libraries to improve portability. To compile a Taskflow program, say simple.cpp
, you need to tell the compiler where to find the Taskflow header files and link it through the system thread library (usually POSIX threads in Linux-like systems). Take gcc for an example:
Taskflow uses CMake to build examples and unit tests. We recommend using out-of-source build.
When the building completes, you can find the executables for examples and tests under the two folders, examples/
and unittests/
. You can list a set of available options in the cmake.
Currently, our CMake script supports the following options:
CMake Option | Default | Usage |
---|---|---|
TF_BUILD_EXAMPLES | ON | enable/disable building examples |
TF_BUILD_TESTS | ON | enable/disable building unit tests |
TF_BUILD_BENCHMARKS | OFF | enable/disable building benchmarks |
TF_BUILD_CUDA | OFF | enable/disable building CUDA code |
TF_BUILD_SYCL | OFF | enable/disable building SYCL code |
To enable or disable a specific option, use -D
in the CMake build. For example:
The above command turns off building Taskflow examples.
To build CUDA code, including unit tests and examples, enable the CMake option TF_BUILD_CUDA
to ON
. Cmake will automatically detect the existence of nvcc
and use it to compile and link .cu code.
Please visit the page Compile Taskflow with CUDA for details.
To build SYCL code, including unit tests and examples, enable the CMake option TF_BUILD_SYCL
to ON
and direct the CMake compiler CMAKE_CXX_COMPILER
to the location of DPC++ clang compiler. You can acquire the DPC++ clang compiler at the official page of Getting Started with oneAPI DPC++.
Please visit the page Compile Taskflow with SYCL for details.
You can build Taskflow with sanitizers to detect a variety of errors, such as data race, memory leak, undefined behavior, and others. To enable a sanitizer, add the sanitizer flag to the CMake variable CMAKE_CXX_FLAGS
. The following example enables thread sanitizer in building Taskflow code to detect data race:
Our continuous integration workflows incorporates thread sanitizer (-fsanitize=thread), address sanitizer (-fsanitize=address), and leak sanitizer (-fsanitize=leak) to detect data race, illegal memory address, and memory leak. To our best knowledge, Taskflow is one of the very few parallel programming libraries that are free from data race.
The Taskflow project contains a set of benchmarks to evaluate and compare the performance of Taskflow with existing parallel programming libraries. To build the benchmark code, enable the CMake option TF_BUILD_BENCHMARKS
to ON
as follows:
Please visit the page Benchmark Taskflow for details.
Taskflow uses Doxygen and m.css to generate this documentation. The source of documentation is located in the folder taskflow/doxygen
and the generated html is output to the folder taskflow/docs
. To generate the documentation, clone the m.css project and enter the m.css/documentation
directory:
The script doxygen.py
requires Python 3.6, depends on Jinja2 for templating and Pygments for code block highlighting. You can install the dependencies via pip
or your distribution package manager:
Next, invoke doxygen.py
and point it to the taskflow/doxygen/conf.py
:
You can find the documentation output in taskflow/docs
.