Presentation is loading. Please wait.

Presentation is loading. Please wait.

Parallelization of ‘Sieve of Eratosthenes’ Algorithm

Similar presentations


Presentation on theme: "Parallelization of ‘Sieve of Eratosthenes’ Algorithm"— Presentation transcript:

1 Parallelization of ‘Sieve of Eratosthenes’ Algorithm
Presented by: Vladimir Aerov Yoed Ginzburg

2 Background A prime number (or a prime) is a natural number greater than 1 that has no positive divisors other than 1 and itself. Prime numbers have a central role in number theory: any integer greater than 1 can be expressed as a product of primes that is unique(Also knows as Elucid’s theorem). As of October 2013, the largest known prime number is  2 57,885,161  −1, a number with 17,425,170 digits.

3 Applications One of the most important use of prime deals with encryption. For example, when an is sent it is often encrypted and then decrypted upon receipt- usually with a function that has a connection to primes. Naturally, the bigger the prime number used, the harder and longer the decryption process takes. Another use is in finance, where banks use prime numbers to collect the reminders from different transactions.

4 Motivation It has been proven that there are an infinite number of primes, making their future use promising and everlasting. Finding a new prime number is a difficult process that cannot be done by hand. A super computer is needed because a potential number is divided by every number smaller than it to see if it is in fact prime. This can take days, months, or even years. Therefore, a fast and efficient method for checking whether a number is prime us needed,

5 Who Can Help Us?!

6 Eratosthenes (ehr-uh-TAHS-thuh-neez)
Eratosthenes was the librarian at Alexandria, Egypt in 200 B.C. Also, he was good at mathematics.

7 Eratosthenes (ehr-uh-TAHS-thuh-neez)
Eratosthenes was a Greek mathematician, astronomer, and geographer. He invented a method for finding prime numbers that is still used today as a standing ground for many advanced algorithms. This method is called Sieve of Eratosthenes.

8 Eratosthenes’ Sieve A sieve has holes in it and is used to filter out the liquid. Eratosthenes’s sieve works the same way, only with prime numbers.

9 The Sieve of Eratosthenes
While sieve of Eratosthenes is simple to grasp and somewhat intuitive, it’s a strong algorithm that not only can decide if a number is prime, but find all the primes between it’s limit.

10 Hundreds Chart 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100

11 1- Cross out 1 ; it is not a prime
2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100

12 2- Leave 2 ; cross out its multiples
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100

13 Repeat this for all the rest of the list
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100

14 Enjoy your new bunch of Primes!
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100

15 Pseudo - Code

16 But it has one little weakness…

17 The Computing time rapidly increase with the size of the list

18 Parallelizing the Algorithm
Since there is no correlation between primes, we can simply divide the list equally between the processes, which make Sieve of Eratosthenes an embarrassingly parallel algorithm. The algorithm need to be repeated only for the first 𝑁 elements! Simply use Open MP on a serial implantation! The Algorithm bottle neck is off course the last check of the whole list in order to determinate the prime numbers.

19 The Results

20 Running time

21 Speedup

22 Efficiency

23 Conclusion Parallelizing Sieve of Eratosthenes proved to be extremely useful, and sticking to Amdahl's law up until the processor limit of the hobbit system. Taking the test into up to 6,000,000 showed even better result: 18 seconds as a serial process and only 2.3 at 8 processors. Checking for bigger natural proved to by problematic as the serial program took minutes to run.


Download ppt "Parallelization of ‘Sieve of Eratosthenes’ Algorithm"

Similar presentations


Ads by Google