Python equivalent of R's mclapply() -
the r package multicore has function mclapply() applies specified function on list of things , takes advantage of multiple cores. it's easy use , results in big speed boosts.
is there python equivalent? thanks
this functionality available map method in multiprocessing.pool()
see answer more details: is there simple process-based parallel map python?
Comments
Post a Comment