parallel_invoke() - Running Multiple Functions in Parallel using Intel Thread Building Block
Posted on Monday, April 06, 2009 at 4:46 PM by Malcolm
From this article, running multiple functions together with Intel Thread Building block is as simple as the following:
void Function1(); void Function2(); void Function3(); void RunFunctions() { } |
Edited on: Monday, April 06, 2009 4:49 PM