Beefy Boxes and Bandwidth Generously Provided by pair Networks
Syntactic Confectionery Delight
 
PerlMonks  

Re: Performance issue in the loop.

by NERDVANA (Deacon)
on Feb 22, 2022 at 21:19 UTC ( [id://11141569]=note: print w/replies, xml ) Need Help??


in reply to Performance issue in the loop.

You know what would really improve the readability? Comments :-)

As for performance, it would probably be better to use List::Util's max() at the end of the inner loop instead of building the max while iterating. You pay for the array access and the subtraction each time you write $sums[$j-$i] You also pay each time you open a scope with curly braces. So maybe:

use List::Util 'max'; ... $sums[ $_ - $i ] += $_[ $_ ] for $i .. $n-1; push @max, max(@sums[0 .. $n-1-$i]);

I don't know why the run-time would vary every 10th run for you, but if it's in a terminal and you are printing to the screen, your desktop environment could have an effect maybe. I ran this example a bunch of times and they came out to pretty much the same ms each time. But, this example as written only takes 175ms for me which is too tiny to really use as a benchmark. I assume you run with a larger $n?

Also I don't recommend using @_ when you aren't dealing with function arguments. Maybe call it @input or something?

Replies are listed 'Best First'.
Re^2: Performance issue in the loop.
by rsFalse (Chaplain) on Feb 23, 2022 at 07:23 UTC
    Thanks for suggestions.

    I ran your code and it worked a little bit slower than my program (optimized variant).
    Also I observed that by few-fold increasing $n, the factor of ~1.5x isn't changing.
    P.S. I used v5.30.
      Ah, nevermind, I realize I was comparing to your old code, not your optimized one. Yes the optimized one gets rid of the double check of $sums$j-$i so that works too.

      Still, List::Util::max is faster than (sort...)[0]

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://11141569]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others taking refuge in the Monastery: (2)
As of 2024-04-19 20:27 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found