2014-05-01 06:57:29 +00:00
|
|
|
from multiprocessing import Pool
|
|
|
|
|
2021-05-27 05:50:04 +00:00
|
|
|
|
2014-05-01 06:57:29 +00:00
|
|
|
def f(x):
|
2021-05-27 05:50:04 +00:00
|
|
|
return x * x
|
|
|
|
|
2014-05-01 06:57:29 +00:00
|
|
|
|
|
|
|
pool = Pool(4)
|
2017-09-03 08:10:56 +00:00
|
|
|
assert pool.apply(f, (10,)) == 100
|