Skip to content

Instantly share code, notes, and snippets.

View serguei-k's full-sized avatar

Serguei Kalentchouk serguei-k

View GitHub Profile
@serguei-k
serguei-k / tbb_macro.h
Last active May 7, 2016 20:56
TBB Macro
// Macros
#define PARALLEL_FOR_BEGIN(type, variable, first, last, step) \
tbb::parallel_for(first, last, step, [&] (type variable)
#define PARALLEL_FOR_END );
// Example usage
PARALLEL_FOR_BEGIN(unsigned, index, 0u, count, 1u) {
// inner loop code
} PARALLEL_FOR_END