How come more threads worsens the perfomance?

36 Views Asked by At

The following code gets 2 numbers from the user and calculates how many primes are there between those numbers. Running the code (between 1 and 1000000) without threads got me 2.8 secs and with 2 threads (my CPU has 2 cores) I got 4.8 secs. Is it a problem with the PC, the code. If you could try and run it on your PC and share the results i would thank you for that. If you see a problem with the code or have any idea why that happens share your toughts.

import math
from threading import Thread
from timeit import timeit

first_num = input()
last_num = input()

primes = []

def is_prime(num):
    if num == 2:
        return True

    if num == 1 or num % 2 == 0:
        return False

    for i in xrange(3, int(math.sqrt(num)) + 1, 2):
        if (num % i == 0):
            return False

    return True

def find_primes(numbers):
    for num in numbers:
        if is_prime(num):
           primes.append(num)

def targil_a():
    find_primes(xrange(first_num, last_num))

    print len(primes)

def targil_b():
    numbers = range(first_num, last_num)

    threads = []

    for i in xrange(2):
        part_len = int(len(numbers)/2)
        t = Thread(target=find_primes, args=(numbers[part_len*i: part_len*(i+1) + 1],))
        t.start()
        threads.append(t)

    for trd in threads:
        trd.join()

    print len(primes)

print timeit(targil_a, number=1)

primes = []

print timeit(targil_b, number=1)
0

There are 0 best solutions below