将python函数与字典并行化为输入

时间:2017-07-06 04:52:11

标签: python dictionary multiprocessing python-3.6

我想在python中使用字典func作为输入调用函数dict_a。如何并行化这些调用,以便将字典的每个elemt(键值对)作为一个单独的进程调用?我使用的是python 3.6

from multiprocessing import Pool
with Pool(processes=6) as p:
    p.starmap(func, dict_a)

1 个答案:

答案 0 :(得分:2)

您在寻找:

gcc q.c -lpthread -lrt -fopenmp

所以它是键/值对的列表。