taskflow

C++ library for parallel task programming with DAG support

brewmacoslinux
Try with needOr install directly
Source

About

General-purpose Task-parallel Programming System using Modern C++

Commands

taskflow

Examples

Compile a C++ program using Taskflow library headers$ g++ -std=c++17 -I$(brew --prefix taskflow)/include myprogram.cpp -o myprogram
Check installed Taskflow version and location$ brew info taskflow
Use Taskflow in CMake project by finding the package$ cmake -DCMAKE_PREFIX_PATH=$(brew --prefix taskflow) ..