You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
487 B
20 lines
487 B
# Quelle: https://www.codesdope.com/blog/article/multiprocessing-using-pool-in-python/
|
|
import time
|
|
from multiprocessing import Pool
|
|
|
|
|
|
def square(x):
|
|
print(f"start process:{x}")
|
|
square = x * x
|
|
print(f"square {x}:{square}")
|
|
time.sleep(1)
|
|
print(f"end process:{x}")
|
|
|
|
|
|
if __name__ == "__main__":
|
|
starttime = time.time()
|
|
pool = Pool()
|
|
pool.map(square, range(0, 5))
|
|
pool.close()
|
|
endtime = time.time()
|
|
print(f"Time taken {endtime-starttime} seconds")
|
|
|