onedpl

C++ standard library with parallel execution policy support

brewmacoslinux
Try with needOr install directly
Source

About

C++ standard library algorithms with support for execution policies

Commands

onedpl

Examples

Include oneDPL headers in C++ project for parallel algorithms$ clang++ -I$(brew --prefix onedpl)/include -std=c++17 program.cpp -o program
Verify oneDPL installation and header location$ brew --prefix onedpl && ls $(brew --prefix onedpl)/include
Compile with TBB backend for parallel execution policies$ clang++ -I$(brew --prefix onedpl)/include -I$(brew --prefix tbb)/include -L$(brew --prefix tbb)/lib -ltbb -std=c++17 parallel_algo.cpp -o parallel_algo