Hi,

What is the idiomatic way of parallelizing a computation on a lazy seq?
>
>
> keep in mind, that pmap lazily processes the seq with a moving window the 
size of which depends on the available cores on your machine.  If the 
processing of one element takes a long time, the parallel work will wait 
for it to finish before moving on.  Thus, pmap may be an easy way to 
achieve parallel processing but is only suited for problems which take 
approximately the same time each.

Stefan

-- 
-- 
You received this message because you are subscribed to the Google
Groups "Clojure" group.
To post to this group, send email to clojure@googlegroups.com
Note that posts from new members are moderated - please be patient with your 
first post.
To unsubscribe from this group, send email to
clojure+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/clojure?hl=en
--- 
You received this message because you are subscribed to the Google Groups 
"Clojure" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to clojure+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.

Reply via email to