Re: [Haskell-cafe] Painless parallelization.

2011-04-19 Thread Don Stewart
> to write a pure functional parallel code with the level of abstraction I used > in Haskell? The status of parallel programming in Haskell is loosely maintained here: http://stackoverflow.com/questions/3063652/whats-the-status-of-multicore-programming-in-haskell/3063668#3063668 Your options,

Re: [Haskell-cafe] Painless parallelization.

2011-04-19 Thread Mats Rauhala
You could look into par and pseq combinators and parallel strategies[1]. Real world haskell[2] has some examples on the usage. 1. http://hackage.haskell.org/package/parallel 2. http://book.realworldhaskell.org/read/concurrent-and-multicore-programming.html -- Mats Rauhala pgpeZ4z9l0SI6.pgp De

[Haskell-cafe] Painless parallelization.

2011-04-19 Thread Grigory Sarnitskiy
Hello, I'm searching a way to benefit from modern hardware in my programs. I consider parallel programing to be actually easier than sequential one. Parallel computation allows to avoid sophisticated algorithms that were developed to gain performance on sequential architecture. It should also al