Skip to content

C++17 parallelism utility library featuring a customizable thread pool

License

Notifications You must be signed in to change notification settings

briancairl/parachute

Repository files navigation

parachute

Pull Request

Description

Parallelism utility library featuring:

  • a customizable thread pool implementation
  • deferred execution abstractions

API Documentation

Documentation for the latest version available here

Requirements

  • cmake >= 3.5
  • c++17

Running tests

Clean rebuild and test

rm -rf build; (mkdir build && cd build && cmake .. -DPARA_ENABLE_TESTING:bool=on && make && ctest -V); cd ..