From: Jon Harrop <jon@ffconsultancy.com>
To: caml-list@yquem.inria.fr
Subject: Re: [Caml-list] Odd performance result with HLVM
Date: Wed, 4 Mar 2009 19:05:28 +0000 [thread overview]
Message-ID: <200903041905.28823.jon@ffconsultancy.com> (raw)
In-Reply-To: <caee5ad80903040817m7f0a8afer2abf80f75c16a692@mail.gmail.com>
On Wednesday 04 March 2009 16:17:55 Mikkel Fahnøe Jørgensen wrote:
> When looking at the benchmark game and other benchmarks I have seen, I
> noticed that Haskell is almost as fast as OCaml and sometimes faster.
> Some Lisp implementations are also pretty fast.
From my ray tracer language comparison, my OCaml is ~50% faster than Haskell
written by Lennart Augustsson and Lisp written by Juho Snellman, both of whom
have extensive experience writing optimizing compilers for those languages
whereas I did not:
http://www.ffconsultancy.com/languages/ray_tracer/results.html
Moreover, I received dozens of implementations in Haskell and Lisp and these
were the only vaguely competitive ones: most programmers are not able to
write fast code in Haskell or Lisp primarily because their performance is so
wildly unpredictable.
The Burrows-Wheeler block sorting data compression algorithm implemented in
Haskell and discussed extensively for weeks in the context of performance is
a good example of this: they never got within 10,000x the performance of C.
There are many other examples where nobody was able to get within orders of
magnitude of the performance of common languages.
GHC does have rudimentary support for parallelism and that makes it much
easier to leverage 2-6 cores in Haskell compared to OCaml. However, that is
merely a deficiency in the current OCaml implementation and is something that
can be addressed. Moreover, the current Haskell implementation scales very
poorly and is easily maxed out even on today's 8 core computers. For example,
on a recent Mandelbrot benchmark from comp.lang.functional the Haskell is
faster for 1-6 cores but stops seeing improvements beyond that whereas OCaml
with process forking continues to see improvements up to all 8 cores and it
faster overall on this machine as a consequence.
Although efficient concurrent garbage collectors are hard to write, parallel
ones like the one in GHC are comparatively easy to write and still very
useful.
> However, when you look at memory consumption OCaml uses considerably
> less memory, except for languages in the C family.
>
> I suspect that many real world performance scenarios, such as heavily
> loaded web servers and complex simulations, depend very much on memory
> consumption. This is both because of GC overhead and because of the
> slower memory pipeline the more cache levels are involved.
>
> So in case of a new JIT solution for OCaml, I believe it is important
> to observe this aspect as well.
OCaml's memory efficiency is certainly extremely good and it may be
theoretically possible to preserve that in a new implementation that supports
parallelism. That is absolutely not the goal of my work though: I only intent
to get the simplest possible parallel GC working because I am interested
primarily in high-performance numerics, string processing and visualization
and not web servers.
However, I will endeavour to make the implementation as extensible as possible
so that other people can create drop-in replacements that provide this kind
of functionality. Improving upon my GC should be quite easy for anyone versed
in the subject. Interestingly, my GC is written entirely in my own
intermediate representation.
--
Dr Jon Harrop, Flying Frog Consultancy Ltd.
http://www.ffconsultancy.com/?e
prev parent reply other threads:[~2009-03-04 19:00 UTC|newest]
Thread overview: 15+ messages / expand[flat|nested] mbox.gz Atom feed top
2009-02-28 1:12 Jon Harrop
2009-02-28 20:18 ` [Caml-list] " Kuba Ober
2009-02-28 21:21 ` Richard Jones
2009-02-28 21:59 ` Jon Harrop
2009-03-02 0:38 ` Jon Harrop
2009-02-28 21:52 ` Jon Harrop
2009-03-02 3:20 ` Jon Harrop
2009-03-02 14:28 ` Florent Ouchet
2009-03-02 16:18 ` Jon Harrop
2009-03-02 20:09 ` Kuba Ober
2009-03-04 16:17 ` Mikkel Fahnøe Jørgensen
2009-03-04 16:30 ` Kuba Ober
2009-03-04 18:15 ` Mikkel Fahnøe Jørgensen
2009-03-04 18:32 ` Jon Harrop
2009-03-04 19:05 ` Jon Harrop [this message]
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=200903041905.28823.jon@ffconsultancy.com \
--to=jon@ffconsultancy.com \
--cc=caml-list@yquem.inria.fr \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox