Thread Local Summation: Using Tasks
This lesson explains the solution for calculating the sum of a vector problem using tasks in C++.
We'll cover the following...
Using tasks, we can do the whole job without synchronization. Each partial summation is performed in a separate thread and ...