Re: [Haskell-cafe] Bulk Synchronous Parallel

2010-04-21 Thread Aaron D. Ball
On Tue, Apr 20, 2010 at 14:05, Jason Dusek jason.du...@gmail.com wrote: One approach is some compiler magic that provides you with an RTS that can communicate with other RTSen over TCP and chunks the computation appropriately. The approaches to Haskell multi-host parallelism I've seen all

Re: [Haskell-cafe] Bulk Synchronous Parallel

2010-04-21 Thread Aaron D. Ball
On Wed, Apr 21, 2010 at 14:14, Don Stewart d...@galois.com wrote: Eden is active, afaik,    http://www.mathematik.uni-marburg.de/~eden/ Unfortunately, Eden is one of the examples I had in mind when referring to distributed Haskell projects as overly complicated and [for practical purposes]

Re: [Haskell-cafe] Difference between div and /

2010-06-01 Thread Aaron D. Ball
What does (stdin + stderr) `mod` stdout mean (result will be stdin). In my GHCi (6.12.1) with System.IO, this fails because Handle is not a numeric type. What implementation are you using? The underlying object here is a Unix file descriptor, which is just a number. In that sense, stdin is 0,