Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

In the Python multiprocessing library, is there a variant of pool.map which support multiple arguments?

text = "test"
def harvester(text, case):
    X = case[0]
    text+ str(X)

if __name__ == '__main__':
    pool = multiprocessing.Pool(processes=6)
    case = RAW_DATASET
    pool.map(harvester(text,case),case, 1)
    pool.close()
    pool.join()
share|improve this question
To my surprise, I could make neither partial nor lambda do this. I think it has to do with the strange way that functions are passed to the subprocesses (via pickle). – senderle Mar 26 '11 at 15:27
2  
@senderle: This is a bug in Python 2.6, but has been fixed as of 2.7: bugs.python.org/issue5228 – unutbu Mar 26 '11 at 16:18

2 Answers

up vote 6 down vote accepted

Edit: I had deleted the below, but J.F. Sebastian indicated that partial works in this instance in Python >=2.7, so I am undeleting, with the caveat that it won't work in 2.6.

First of all, in the above code, you're passing the result of harvester(text, case) instead of the function harvester itself. Also, you aren't returning anything; you'll have to return something in order for this to be useful. But to answer your question, you might be able to use partial from functools.

I'm assuming that text is the variable that should be mapped, while case supplies the mapping function with extra information about the whole sequence. This simply maps each element in case to case[i] + case[0]. That's a bit different from what you did, but I find this example clearer:

from functools import partial

def harvester(text, case):
    X = case[0]
    return text + str(X)

partial_harvester = partial(harvester, case=RAW_DATASET)

if __name__ == '__main__':
    pool = multiprocessing.Pool(processes=6)
    case_data = RAW_DATASET
    pool.map(partial_harvester, case_data, 1)
    pool.close()
    pool.join()
share|improve this answer

is there a variant of pool.map which support multiple arguments?

Python 3.3 includes pool.starmap() method.

For older versions:

import itertools
from multiprocessing import Pool, freeze_support

def func(a, b):
    print a, b

def func_star(a_b):
    """Convert `f([1,2])` to `f(1,2)` call."""
    return func(*a_b)

def main():
    pool = Pool()
    a_args = [1,2,3]
    second_arg = 1
    pool.map(func_star, itertools.izip(a_args, itertools.repeat(second_arg)))

if __name__=="__main__":
    freeze_support()
    main()

Output

1 1
2 1
3 1

Notice how itertools.izip() and itertools.repeat() are used here.

Due to the bug mentioned by @unutbu you can't use functools.partial() or similar capabilities on Python 2.6, so the simple wrapper function func_star() should be defined explicitly. See also the workaround suggested by uptimebox.

share|improve this answer
+1, thanks for explaining that bug. – senderle Mar 26 '11 at 18:33
1  
F.: You can unpack the argument tuple in the signature of func_star like this: def func_star((a, b)). Of course, this only works for a fixed number of arguments, but if that is the only case he has, it is more readable. – Björn Pollex Mar 26 '11 at 21:01
1  
@Space_C0wb0y: f((a,b)) syntax is deprecated and removed in py3k. And it is unnecessary here. – J.F. Sebastian Mar 26 '11 at 21:31
F.: I did not know that it was deprecated, thanks! – Björn Pollex Mar 26 '11 at 21:33
1  
@BjörnPollex python.org/dev/peps/pep-3113 – dbr Jan 5 '12 at 3:52

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.