I hope my perl script can run faster, however it should not eat up all the CPU resouce.

Why shouldn't it use all the CPU resource? What are you saving it for?

Essentially what I'm saying here is that cpu resource is time; and time inexorably moves forward; you cannot save it for later; so unused CPU is essentially wasted cpu that you can never recover. Your processor should either be running as close to 100% as your workload permits; or it should be idle because you have nothing to do. Trying to restrain it to say 75% or whatever; doesn't achieve anything not even energy savings.

Perhaps what you are concerned with is that you want to ensure that some other, sporadic processes will have an opportunity to run concurrently with this workload when they need to?

If so, the proper way to deal with that is not to try an 'reserve' some cpu; but rather to run this workload at a lower priority than the sporadic workload(s) so that you make full use of the cpu for this workload when can; whilst ensuring that those sporadic workloads will get a look in when they need it.


With the rise and rise of 'Social' network sites: 'Computers are making people easier to use everyday'
Examine what is said, not who speaks -- Silence betokens consent -- Love the truth but pardon error.
"Science is about questioning the status quo. Questioning authority". I knew I was on the right track :)
In the absence of evidence, opinion is indistinguishable from prejudice.

In reply to Re: How can I limit the number of Cores in multi-process programming by BrowserUk
in thread How can I limit the number of Cores in multi-process programming by milesjin

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
  • Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
  • Read Where should I post X? if you're not absolutely sure you're posting in the right place.
  • Please read these before you post! —
  • Posts may use any of the Perl Monks Approved HTML tags:
    a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
  • You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
            For:     Use:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.