Python equivalent to R mclapply ()

The multi-core package R has a function mclapply () that applies the specified function to a list of things and takes advantage of several cores. It is easy to use and leads to large speed accelerations.

Is there a Python equivalent? Thanks

+7
source share
1 answer

This function is available from the map method in a multiprocessor system. Pool ()

See this answer for more details: Is there a simple parallel process-based map for python?

+2
source

All Articles