Skip to content

Instantly share code, notes, and snippets.

@serguei-k
Last active May 7, 2016 20:56
Show Gist options
  • Save serguei-k/220efbaa5fa93ddc8cced05f314ed3c9 to your computer and use it in GitHub Desktop.
Save serguei-k/220efbaa5fa93ddc8cced05f314ed3c9 to your computer and use it in GitHub Desktop.
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
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment