Subscribe to
Posts
Comments

Sorry for the late notice about this, but I just found out about it.

Satnam Singh of Microsoft Research will be presenting an overview of parallel and concurrent programming techniques in Haskell tomorrow, at 1:30pm, at Stanford’s CS department, Gates 104. The talk isn’t listed in the CS department’s public calendar. Here’s the abstract:

This presentation describes a variety of ways to write parallel and concurrent programs in the lazy functional language Haskell. We start off by introducing par/pseq annotations which provide guidance to the run-time about how work can be performed speculatively which provides a basic mechanism for writing implicitly parallel programs. We then describe how a library of strategies can be used to force specific evaluation orders which are necessary to exploit parallelism. We then go on to describe the basic mechanism for writing explicitly parallel programs using Haskell’s lightweight threads and then we describe how Haskell’s STM implementation can help to write programs that share state between threads through the use of a special monads and as an example we describe the implementation of a multi-way rendezvous library. We then describe some work with Tim Harris on feedback directed implicit parallelism which provides yet another way to write implicitly parallel programs with out resorting to par/pseq annotations. Finally, we report on the progress of a nested data parallel library for Haskell inspired by the NESL language. Throughout the talk we shall emphasizes how Haskell’s pure nature (with side
effecting operations clearly indicated by the type system) facilitates the exploitation of parallelism.

5 Responses to “Bay Area Haskellers: talk at Stanford tomorrow, 1:30pm”

  1. on 28 Feb 2008 at 15:39 UTCJay McCarthy

    Feb 28th or Feb 29th?

  2. on 28 Feb 2008 at 16:57 UTCBryan O'Sullivan

    The 28th, i.e. today :-)

  3. on 11 Mar 2008 at 04:16 UTCAlex

    Any papers, audio, video, slides, etc. from this talk available yet?

  4. on 11 Mar 2008 at 04:39 UTCBryan O'Sullivan

    Not as far as I know. It’s rare for academic symposia to be filmed and Youtubed.

  5. on 11 Mar 2008 at 10:08 UTCAlex

    I found some relevant papers here (4th bullet point down):

    http://research.microsoft.com/~satnams/