我正在为python寻找一个简单的基于进程的并行映射,即一个函数
parmap(function,[data])
将在不同进程上的[data]的每个元素上运行函数(好吧,在不同的核心上,但是AFAIK,在python中在不同核心上运行东西的唯一方法是启动多个解释器),并返回一个结果清单。
这样的事情存在吗?我想要一些简单,所以一个简单的模块会很好。当然,如果不存在这样的事情,我会选择一个大型图书馆: - /
答案 0 :(得分:100)
我看起来你需要的是map method in multiprocessing.Pool():
map(func,iterable [,chunksize])
A parallel equivalent of the map() built-in function (it supports only one iterable argument though). It blocks till the result is ready. This method chops the iterable into a number of chunks which it submits to the process pool as separate tasks. The (approximate) size of these chunks can be specified by setting chunksize to a positive integ
例如,如果您想映射此功能:
def f(x):
return x**2
到范围(10),你可以使用内置的map()函数:
map(f, range(10))
或使用multiprocessing.Pool()对象的方法map():
import multiprocessing
pool = multiprocessing.Pool()
print pool.map(f, range(10))
答案 1 :(得分:2)
Python3 的 Pool 类有一个 map() 方法,这就是并行化 map 所需的全部内容:
from multiprocessing import Pool
with Pool() as P:
xtransList = P.map(some_func, a_list)
使用 with Pool() as P
类似于进程池,将并行执行列表中的每个项目。您可以提供核心数:
with Pool(processes=4) as P:
答案 2 :(得分:1)
我知道这是一篇过时的文章,但以防万一,我编写了一个工具来使这个超级简单易用,名为parmapper(实际上,我在使用它时称呼它为parmap,但使用了这个名称)。 / p>
它处理许多过程的设置和解构,并增加了许多功能。重要性排名
它确实产生了很小的成本,但是对于大多数用途而言,可以忽略不计。
我希望您觉得它有用。
(注意:它像Python 3+中的map
一样,返回一个可迭代的值,因此,如果您希望所有结果都立即通过它,请使用list()
)
答案 3 :(得分:0)
对于那些寻找与R的mclapply()等效的Python的人,这是我的实现。它是以下两个示例的改进:
它可以应用于具有单个或多个参数的映射函数。
import numpy as np, pandas as pd
from scipy import sparse
import functools, multiprocessing
from multiprocessing import Pool
num_cores = multiprocessing.cpu_count()
def parallelize_dataframe(df, func, U=None, V=None):
#blockSize = 5000
num_partitions = 5 # int( np.ceil(df.shape[0]*(1.0/blockSize)) )
blocks = np.array_split(df, num_partitions)
pool = Pool(num_cores)
if V is not None and U is not None:
# apply func with multiple arguments to dataframe (i.e. involves multiple columns)
df = pd.concat(pool.map(functools.partial(func, U=U, V=V), blocks))
else:
# apply func with one argument to dataframe (i.e. involves single column)
df = pd.concat(pool.map(func, blocks))
pool.close()
pool.join()
return df
def square(x):
return x**2
def test_func(data):
print("Process working on: ", data.shape)
data["squareV"] = data["testV"].apply(square)
return data
def vecProd(row, U, V):
return np.sum( np.multiply(U[int(row["obsI"]),:], V[int(row["obsJ"]),:]) )
def mProd_func(data, U, V):
data["predV"] = data.apply( lambda row: vecProd(row, U, V), axis=1 )
return data
def generate_simulated_data():
N, D, nnz, K = [302, 184, 5000, 5]
I = np.random.choice(N, size=nnz, replace=True)
J = np.random.choice(D, size=nnz, replace=True)
vals = np.random.sample(nnz)
sparseY = sparse.csc_matrix((vals, (I, J)), shape=[N, D])
# Generate parameters U and V which could be used to reconstruct the matrix Y
U = np.random.sample(N*K).reshape([N,K])
V = np.random.sample(D*K).reshape([D,K])
return sparseY, U, V
def main():
Y, U, V = generate_simulated_data()
# find row, column indices and obvseved values for sparse matrix Y
(testI, testJ, testV) = sparse.find(Y)
colNames = ["obsI", "obsJ", "testV", "predV", "squareV"]
dtypes = {"obsI":int, "obsJ":int, "testV":float, "predV":float, "squareV": float}
obsValDF = pd.DataFrame(np.zeros((len(testV), len(colNames))), columns=colNames)
obsValDF["obsI"] = testI
obsValDF["obsJ"] = testJ
obsValDF["testV"] = testV
obsValDF = obsValDF.astype(dtype=dtypes)
print("Y.shape: {!s}, #obsVals: {}, obsValDF.shape: {!s}".format(Y.shape, len(testV), obsValDF.shape))
# calculate the square of testVals
obsValDF = parallelize_dataframe(obsValDF, test_func)
# reconstruct prediction of testVals using parameters U and V
obsValDF = parallelize_dataframe(obsValDF, mProd_func, U, V)
print("obsValDF.shape after reconstruction: {!s}".format(obsValDF.shape))
print("First 5 elements of obsValDF:\n", obsValDF.iloc[:5,:])
if __name__ == '__main__':
main()
答案 4 :(得分:0)
这可以通过Ray优雅地完成,该系统使您可以轻松地并行化和分发Python代码。
要并行化示例,您需要使用@ray.remote
装饰器定义map函数,然后使用.remote
调用它。这将确保远程功能的每个实例将在不同的进程中执行。
import time
import ray
ray.init()
# Define the function you want to apply map on, as remote function.
@ray.remote
def f(x):
# Do some work...
time.sleep(1)
return x*x
# Define a helper parmap(f, list) function.
# This function executes a copy of f() on each element in "list".
# Each copy of f() runs in a different process.
# Note f.remote(x) returns a future of its result (i.e.,
# an identifier of the result) rather than the result itself.
def parmap(f, list):
return [f.remote(x) for x in list]
# Call parmap() on a list consisting of first 5 integers.
result_ids = parmap(f, range(1, 6))
# Get the results
results = ray.get(result_ids)
print(results)
这将打印:
[1, 4, 9, 16, 25]
,它将以大约len(list)/p
(四舍五入到最接近的整数)结尾,其中p
是计算机上的内核数。假设一台机器有2个内核,我们的示例将在5/2
舍入后执行,即大约3
秒。
与multiprocessing模块相比,使用Ray有许多优点。特别是,相同的代码将在单台计算机以及多台计算机上运行。有关Ray的更多优点,请参见this related post。