Using Parallel Algorithms
This lesson highlights the advantages of using parallel algorithms to implement the CSV reader application we just made.
We'll cover the following...
Previously the code was executed in a sequenced way. We can illustrate it in the following diagram:
We open each file, process it, calculate, then we go to another file. All this happens on a single thread.
However, there are several places we can consider using parallel algorithms:
- Each file can be processed