I want to write a strategy to evaluate items in an array in parallel. The old strategies had parArr to do this (see here). But this is not found in the new Control.Parallel.Strategies module.
E.g.
parallel list evaluation: map f myList `using` parList rdeepseq
I would want to be able to do something like: amap f myArr `using` parArr rdeepseq, where amap is from Data.Array.Base and applies a function to each of the elements (sequentially).
The following seems to work but I wonder if it is doing it right, and want to know how I could define my own parArr.
This works: amap ((+1) `using` rpar) $ Array.array (0,4) [(0,10),(1,20),(2,30),(3,40),(4,50)]
(+1) `using` rparis quite strange. It will evaluate the expression(+1)in parallel, which does not make much sense because(+1)is a lambda-expression, thus it already is in a WHNF and there is nothing left to evaluate. You may have meantamap ((`using` rpar).(+1)), no? – Rotsor Jul 5 '11 at 0:03repaorvector, which already have parallel strategies, and are much more flexible in general? – Don Stewart Jul 5 '11 at 0:36repaorvectorare definitely more flexible but i'm trying to limit the changes to an existing codebase by just introducing parallelism using strategies. Using strategies, I can have a good separation between the algorithm and parallel behaviour. If it works, the next thing would be to look at your suggestion. thanks +1 – vis Jul 5 '11 at 11:10