我需要在python中运行两个连续的pool.maps。但第二个依赖于第一张地图的结果。因此,在运行第二个pool.map之前,我需要确保为所有args执行function1。谁能告诉我怎么做?
# The first multiprocessing unit
pool = Pool(processes=num_p)
new_args=dict(pool.map(function1, args))
# The second multiprocessing unit
pool.map(function2, new_args)
由于