Speed improvements for Perl's chameneos-redux in the Computer Language Benchmarks Game

Posted by Robert P on Stack Overflow See other posts from Stack Overflow or by Robert P
Published on 2010-04-09T16:18:55Z Indexed on 2010/04/09 21:43 UTC
Read the original article Hit count: 500

Filed under:
|
|
|

Ever looked at the Computer Language Benchmarks Game (formerly known as the Great Language Shootout)?

Perl has some pretty healthy competition there at the moment. It also occurs to me that there's probably some places that Perl's scores could be improved. The biggest one is in the chameneos-redux script right now—the Perl version runs the worst out of any language: 1,626 times slower than the C baseline solution!

There are some restrictions on how the programs can be made and optimized, and there is Perl's interpreted runtime penalty, but 1,626 times? There's got to be something that can get the runtime of this program way down.

Taking a look at the source code and the challenge, how can the speed be improved?

© Stack Overflow or respective owner

Related posts about perl

Related posts about optimization