tbb

Intel Threading Building Blocks library for parallel C++ programming

brewmacoslinux
Try with needOr install directly
Source

About

Rich and complete approach to parallelism in C++

Commands

tbb

Examples

Link TBB library in C++ compilation for parallel task execution$ clang++ -o parallel_app main.cpp -ltbb
Check TBB installation and version information$ pkg-config --modversion tbb
Compile with TBB include paths and library linking$ g++ -I$(brew --prefix tbb)/include -L$(brew --prefix tbb)/lib -o app main.cpp -ltbb