Sequential Algorithms
-
Parallel Algorithms and Sequential AlgorithmsModeling/TheoremParadigm 2020. 2. 27. 21:22
1. Overview In the case of Sequential algorithms, It should execute the tasks one after each other. In the case of Parallel algorithms, we execute different tasks with different processors then combine the results. Some problems are easy to parallelizable, other problems are completely sequential. 2. Description 2.1 Parallel algorithms Checking prime numbers in a range. We have to make subsets. ..