You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This is a simple interface to python's multiprocessing.Pool to map functions over data
Default behavior is to use a single processor, identical to using itertools.imap.
In the case of multiple processors (specified using ez.pool.setup_pool), computations are farmed out to other processes using the multiprocessing library.