Browse thread
[Caml-list] O'Caml vs C++: a little benchmark
[
Home
]
[ Index:
by date
|
by threads
]
[ Message by date: previous | next ] [ Message in thread: previous | next ] [ Thread: previous | next ]
[ Message by date: previous | next ] [ Message in thread: previous | next ] [ Thread: previous | next ]
Date: | 2002-08-19 (14:38) |
From: | Oleg <oleg_inconnu@m...> |
Subject: | Re: [Caml-list] O'Caml vs C++: a little benchmark |
On Monday 19 August 2002 09:02 am, Xavier Leroy wrote: > * http://www.bagley.org/~doug/shootout/ is a (rare) example of a > non-stupid inter-language performance comparison. What?! The cluelessness of the "shootout" is beyond belief. Let me quote e.g. http://www.bagley.org/~doug/shootout/bench/lists/ <quote> Please Note: this test is due for an overhaul. I would like to have 2 lists tests, one that tests single-linked list functions, and one that tests double-linked list (deque) functions. </quote> Are there people here who do not know that deque == double-ended queue <> "double-linked list" ? If you were to look at the O'Caml and C++ programs for the "list" comparison in the shootout, you'd see that the C++ version uses bona fide doubly-linked lists (the ones that allow fast inserstion in the middle), while the O'Caml version uses pre-allocated Array.t in this "list" comparison. Oleg ------------------- To unsubscribe, mail caml-list-request@inria.fr Archives: http://caml.inria.fr Bug reports: http://caml.inria.fr/bin/caml-bugs FAQ: http://caml.inria.fr/FAQ/ Beginner's list: http://groups.yahoo.com/group/ocaml_beginners