in reply to Re: Perl slower than java
in thread Perl slower than java
Update: this took place in ING Baring's market data department many years ago - the case was the calculation of correlation co-efficients, from N market prices, generating MxN(N-1)/2 values for M times at which prices where snapshot. The C-program did 2*M*N*N iterations through home-grown correlation coding. The Perl program used a CPAN module iterating it only N(N-1)/2 times with a few optimisations thrown in of the kind we've discussed already.
One world, one people
|
---|
Replies are listed 'Best First'. | |
---|---|
Re^3: Perl slower than java
by dHarry (Abbot) on Dec 09, 2010 at 12:43 UTC | |
by anonymized user 468275 (Curate) on Dec 09, 2010 at 14:32 UTC |