Are 'par' and 'pseq' good for data parallelism or it is made for task-parallelism solely?

For example, if it is used to separate working over list of data items.

link|improve this question

feedback

1 Answer

up vote 1 down vote accepted

I guess the answer is yes. You can, for example, evaluate the elements of the list in parallel using the parList strategy from Control.Parallel.Strategies. If your data items are very cheap to compute, you may want a more coarse-grained parallelism, like in parListChunk strategy.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.