pmap for one and two lists using futures.
Go to file
2017-01-03 23:44:17 +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-03 14:39:22 +01:00
pmap.scrbl Add files via upload 2017-01-03 23:34:56 +01:00
README.md Update README.md 2017-01-03 23:44:17 +01:00

pmap

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

Map applies a funcion to an item one at a time, pmap constructs a future for every item that then run in parallel.

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

With the help of CarlSmotricz its now refined and tuned to perfection! :-)