pmap for one and two lists using futures.
Go to file
2017-01-11 06:38:55 +01:00
info.rkt Update info.rkt 2017-01-03 14:36:43 +01:00
LICENSE.txt Add files via upload 2017-01-01 22:29:13 +01:00
main.rkt Add files via upload 2017-01-10 08:41:45 +01:00
pmap.scrbl Add files via upload 2017-01-11 06:38:55 +01:00
pmapf.rkt Add files via upload 2017-01-10 08:41:45 +01:00
pmapp_worker.rkt Add files via upload 2017-01-10 10:16:00 +01:00
pmapp.rkt Add files via upload 2017-01-10 08:41:45 +01:00
README.md Update README.md 2017-01-10 08:45:21 +01:00

pmap

A pmap implementation in Racket inspired from Clojure's pmap.

Map applies a funcion to an item one at a time, pmapf constructs a future for every item thats then run in parallel. pmapp constructs a place for every item thats then run in parallel.

For heavyer computations the gain is positive, because of the future/place overhead simpler computations will run wors in pmapf/pmapp than in map.

With the help of CarlSmotricz and the racket mailing list! :-)