我想在python中使用字典func
作为输入调用函数dict_a
。如何并行化这些调用,以便将字典的每个elemt(键值对)作为一个单独的进程调用?我使用的是python 3.6
from multiprocessing import Pool
with Pool(processes=6) as p:
p.starmap(func, dict_a)
答案 0 :(得分:2)
您在寻找:
gcc q.c -lpthread -lrt -fopenmp
所以它是键/值对的列表。