Last active
May 7, 2016 20:56
-
-
Save serguei-k/220efbaa5fa93ddc8cced05f314ed3c9 to your computer and use it in GitHub Desktop.
TBB Macro
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 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