newLISP Fan Club

Forum => newLISP in the real world => Topic started by: jopython on April 19, 2013, 03:17:38 PM

Title: Multiprocess map - Parallel Map
Post by: jopython on April 19, 2013, 03:17:38 PM
Is there a Parallel version of map (which internally uses spawn) where we can control the number of procs used and timeout?



Something like



(parallel-map func seq max-procs timeout)


This is for utilizing multiple processors instead  of the regular map which is sequential.
Title: Re: Multiprocess map - Parallel Map
Post by: cormullion on April 20, 2013, 12:54:28 AM
You might find //http://www.newlisp.org/syntax.cgi?code/mapreduce.txt useful.
Title: Re: Multiprocess map - Parallel Map
Post by: jopython on April 21, 2013, 06:18:42 AM
Thanks cormullion. This looks like a implementation of mapreduce before spawn was introduced in newlisp.