vote up 3 vote down star
2

The OCaml GC imposes a global lock that prevents mutators (threads) from running in parallel although they can run concurrently (interleaved). I believe the same is true of SML/NJ and MLton but not PolyML, GHC, F#, Clojure and Scala.

What other functional language implementations allow threads to run in parallel?

flag

75% accept rate

7 Answers

vote up 3 vote down check

I'm happy to tell you that you're right and that F#, being based on the CLR, doesn't suffer from that limitation at all, and instead benefits from multithreading specific features including async workflows, the mailboxprocessor, and the wonderful upcoming (.NET 4.0) Task Parallel Library.

link|flag
vote up 5 vote down

There are a number of good implementations out there. At the moment, the Haskell people seem to be getting the best results (see ICFP 2009 paper by Simon Marlow and others as well as Haskell Symposium 2009 paper by Donnie Jones and others). Erlang is quite close behind, especially if you want to go distributed.

In six to twelve months the answers may have changed :-)

link|flag
vote up 4 vote down

Haskell supports parallel threads via Data Parallel Haskell

link|flag
Data Parallel Haskell is still quite experimental, but the parallel thread support in your first link is much more mature. DPH is implemented with parallel threads, not vice versa. – Ganesh Sittampalam Jul 13 at 7:32
Thanks for clarifying that – Brian Agnew Jul 13 at 12:00
vote up 4 vote down

Scala and Clojure are both running on the JVM, which allows real concurrency without any single point of contention bottlenecks.

link|flag
Can you recommend a link to anything about parallel programming in Scala? – Jon Harrop Jul 31 at 15:50
Scala supports Actors scala-lang.org/node/242 if you like that model, and you can use java.util.concurrency just as you would in Java. I suppose given the question is about functional programming, Actors is more appropriate. – Kevin Peterson Aug 2 at 19:12
vote up 3 vote down

Erlang implements its own processes and process schedule and allows thousands, tens of thousands and even millions of Erlang processes (inside a single Operating System process).

In SMP and multi-core machines the Erlang Virtual Machine will allocate as many OS threads and OS processes to its process scheduler and process queue to maximise its use of underlying concurrent operations in the hardware architecture.

The concurrency paradigm exposed to the applications remains the same, of course.

link|flag
vote up 1 vote down

In addition to Haskell, you can run processes concurrently in Erlang (Concurrency-Oriented Programming) and you can also do so in F# using .NET Parallel Extensions and Asynchronous Workflows.

link|flag
vote up -1 vote down

python is not a particularly functional language, and with the GIL, it's not very parallel, either, but combined with the multiprocessing module (standard since 2.6), you get both, but it's not quite as elegant as pure functional languages.

Brief example:

from multiprocessing import Pool

def f(x):
    return x*x

if __name__ == '__main__':
    pool = Pool(processes=4)              # start 4 worker processes
    result = pool.apply_async(f, [10])     # evaluate "f(10)" asynchronously
    print result.get(timeout=1)           # prints "100" unless your computer is *very* slow
    print pool.map(f, range(10))          # prints "[0, 1, 4,..., 81]"
link|flag
I didn't expect this response to be terribly popular, but please explain a bit what you find so objectionable about this technique? – TokenMacGuy Jul 14 at 5:20
My question was specifically about threads and not processes. – Jon Harrop Jul 31 at 15:52
CPython has an issue involving concurrent kernel threads, preventing it's full use. the multiprocessing module allows you to use a nearly identical interface with processes instead of threads to achieve nearly identical results. This issue is not present in other flavours of python because they lack the GIL. – TokenMacGuy Jul 31 at 17:29

Your Answer

Get an OpenID
or

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