Administrator
|
Latest shootout results.
V8 JS still hanging in there well ahead of all the agile gang (ruby/python/etc). C# seems to be loosing ground to hefty Java, but that could easily be optimization flags.
The python numbers may be unfair: its all python code with no C libraries. I doubt many python programs are w/o the python wrappers around C code. -- Owen ============================================================ FRIAM Applied Complexity Group listserv Meets Fridays 9a-11:30 at cafe at St. John's College lectures, archives, unsubscribe, maps at http://www.friam.org |
HTML 5 is oddly abscent. Though speed tests are kind of cool-relevence and what used in the "reel world" might be slightly more telling--though I think someone had put a few numbers up on the list a few months ago.
On Sun, Mar 18, 2012 at 9:28 PM, Owen Densmore <[hidden email]> wrote: Latest shootout results. ============================================================ FRIAM Applied Complexity Group listserv Meets Fridays 9a-11:30 at cafe at St. John's College lectures, archives, unsubscribe, maps at http://www.friam.org |
Not clear what you mean. HTML5 is a markup language, not a programming language. You can't use it to perform computations.
-- Russ Abbott _____________________________________________ Professor, Computer Science
California State University, Los Angeles Google voice: 747-999-5105 On Mon, Mar 19, 2012 at 10:57 AM, Gillian Densmore <[hidden email]> wrote: HTML 5 is oddly abscent. Though speed tests are kind of cool-relevence and what used in the "reel world" might be slightly more telling--though I think someone had put a few numbers up on the list a few months ago. ============================================================ FRIAM Applied Complexity Group listserv Meets Fridays 9a-11:30 at cafe at St. John's College lectures, archives, unsubscribe, maps at http://www.friam.org |
This benchmark compares the mono C#, not the MS .NET C#.
**************************** Greg Sonnenfeld “The scientists of today think deeply instead of clearly. One must be sane to think clearly, but one can think deeply and be quite insane.” On Mon, Mar 19, 2012 at 1:44 PM, Russ Abbott <[hidden email]> wrote: > Not clear what you mean. HTML5 is a markup language, not a programming > language. You can't use it to perform computations. > > -- Russ Abbott > _____________________________________________ > Professor, Computer Science > California State University, Los Angeles > > Google voice: 747-999-5105 > Google+: https://plus.google.com/114865618166480775623/ > vita: http://sites.google.com/site/russabbott/ > _____________________________________________ > > > > On Mon, Mar 19, 2012 at 10:57 AM, Gillian Densmore <[hidden email]> > wrote: >> >> HTML 5 is oddly abscent. Though speed tests are kind of cool-relevence and >> what used in the "reel world" might be slightly more telling--though I think >> someone had put a few numbers up on the list a few months ago. >> >> On Sun, Mar 18, 2012 at 9:28 PM, Owen Densmore <[hidden email]> >> wrote: >>> >>> Latest shootout results. >>> >>> http://shootout.alioth.debian.org/u32/benchmark.php?test=all&lang=all >>> >>> >>> V8 JS still hanging in there well ahead of all the agile gang >>> (ruby/python/etc). C# seems to be loosing ground to hefty Java, but that >>> could easily be optimization flags. >>> >>> The python numbers may be unfair: its all python code with no C >>> libraries. I doubt many python programs are w/o the python wrappers around >>> C code. >>> >>> -- Owen >>> >>> ============================================================ >>> FRIAM Applied Complexity Group listserv >>> Meets Fridays 9a-11:30 at cafe at St. John's College >>> lectures, archives, unsubscribe, maps at http://www.friam.org >> >> >> >> ============================================================ >> FRIAM Applied Complexity Group listserv >> Meets Fridays 9a-11:30 at cafe at St. John's College >> lectures, archives, unsubscribe, maps at http://www.friam.org > > > > ============================================================ > FRIAM Applied Complexity Group listserv > Meets Fridays 9a-11:30 at cafe at St. John's College > lectures, archives, unsubscribe, maps at http://www.friam.org ============================================================ FRIAM Applied Complexity Group listserv Meets Fridays 9a-11:30 at cafe at St. John's College lectures, archives, unsubscribe, maps at http://www.friam.org |
In reply to this post by Owen Densmore
Nice. It is commonly known that interpreters are slower than compilers but it is interesting to have measures and a ranking. Thanks 2012/3/18 Owen Densmore <[hidden email]> Latest shootout results. -- Alfredo ============================================================ FRIAM Applied Complexity Group listserv Meets Fridays 9a-11:30 at cafe at St. John's College lectures, archives, unsubscribe, maps at http://www.friam.org |
In reply to this post by Owen Densmore
From the link, it seems that C is the fastest programming language by
a very wide margin. On 3/19/12, Owen Densmore <[hidden email]> wrote: > Latest shootout results. > > http://shootout.alioth.debian.org/u32/benchmark.php?test=all&lang=all ============================================================ FRIAM Applied Complexity Group listserv Meets Fridays 9a-11:30 at cafe at St. John's College lectures, archives, unsubscribe, maps at http://www.friam.org |
C's in third spot, just behind C++ and Fortran. There shouldn't be
much difference between C and C++, and there isn't. Fortran has almost always produced more efficient code, although one should be able to approach Fortran performance in C and C++ with a little care. Cheers On Tue, Mar 20, 2012 at 07:38:37AM +0530, Sarbajit Roy wrote: > >From the link, it seems that C is the fastest programming language by > a very wide margin. > > On 3/19/12, Owen Densmore <[hidden email]> wrote: > > Latest shootout results. > > > > http://shootout.alioth.debian.org/u32/benchmark.php?test=all&lang=all > > ============================================================ > FRIAM Applied Complexity Group listserv > Meets Fridays 9a-11:30 at cafe at St. John's College > lectures, archives, unsubscribe, maps at http://www.friam.org -- ---------------------------------------------------------------------------- Prof Russell Standish Phone 0425 253119 (mobile) Principal, High Performance Coders Visiting Professor of Mathematics [hidden email] University of New South Wales http://www.hpcoders.com.au ---------------------------------------------------------------------------- ============================================================ FRIAM Applied Complexity Group listserv Meets Fridays 9a-11:30 at cafe at St. John's College lectures, archives, unsubscribe, maps at http://www.friam.org |
It would be interesting to see this same benchmark done on an Intel C compiler.
Its a bit of a misnomer to compare Intel Fortran to GNU C. GNU C should probably be compared to GNU F77. A good thing to think about is how compiler implementation and optimization will impact performance. **************************** Greg Sonnenfeld “The scientists of today think deeply instead of clearly. One must be sane to think clearly, but one can think deeply and be quite insane.” On Mon, Mar 19, 2012 at 8:22 PM, Russell Standish <[hidden email]> wrote: > C's in third spot, just behind C++ and Fortran. There shouldn't be > much difference between C and C++, and there isn't. Fortran has almost > always produced more efficient code, although one should be able to > approach Fortran performance in C and C++ with a little care. > > Cheers > > On Tue, Mar 20, 2012 at 07:38:37AM +0530, Sarbajit Roy wrote: >> >From the link, it seems that C is the fastest programming language by >> a very wide margin. >> >> On 3/19/12, Owen Densmore <[hidden email]> wrote: >> > Latest shootout results. >> > >> > http://shootout.alioth.debian.org/u32/benchmark.php?test=all&lang=all >> >> ============================================================ >> FRIAM Applied Complexity Group listserv >> Meets Fridays 9a-11:30 at cafe at St. John's College >> lectures, archives, unsubscribe, maps at http://www.friam.org > > -- > > ---------------------------------------------------------------------------- > Prof Russell Standish Phone 0425 253119 (mobile) > Principal, High Performance Coders > Visiting Professor of Mathematics [hidden email] > University of New South Wales http://www.hpcoders.com.au > ---------------------------------------------------------------------------- > > ============================================================ > FRIAM Applied Complexity Group listserv > Meets Fridays 9a-11:30 at cafe at St. John's College > lectures, archives, unsubscribe, maps at http://www.friam.org ============================================================ FRIAM Applied Complexity Group listserv Meets Fridays 9a-11:30 at cafe at St. John's College lectures, archives, unsubscribe, maps at http://www.friam.org |
Free forum by Nabble | Edit this page |