In C#, is there a way to make a program that simply "eats" roughly 20% of my processing power? In other words, I want my CPU to run at 80% power.
|
|
|
|
|
|
|
Not exactly using C#, but if you want to set your cpu to only use 80% it can be set in windows power options.
|
||||||||
|
|
|
I assume this is for some form of simulated load testing? Here's one example |
||
|
|
|
|
step 1: Run a cpu intensive loop timing how long it takes to run You can tune step1 to take microseconds, milliseconds or seconds depending on what type of measurements you are doing |
||
|
|
|
|
Quick background: In reality a CPU is either busy or not, 100% or 0%. Operating systems just do a running average over a short period of time to give you an idea of how often your CPU is crunching. You didn't specify if you want to do this for a specific core, or as an average across all CPU cores... I'll describe the latter - you'll need to run this code in 1 thread for every core. Look in the System.Diagnostics namespace and find performance counters.
I would probably attach to the "Processor" performance counters (Total, not per core). You may want to keep a short running average in your code too. In your for-loop, check the value of your Processor usage and depending on whether its near your threshold, sleep for a longer or shorter interval... (you might increment/decrement your sleep delay more or less depending on how far away you are from ideal load) If you get the running average, and your sleep increment/decrement values right, your program should self-tune to get to the right load. |
|||
|
|
|
|
well, you can make an infinite loop, with timer -that toggle a sleep function for 8 milliseconds after 2 milliseconds) it is not a real 20% but there is no such thing as real 20%. you will just make it busy for 20% of the time. notice that a. if you have multi-core cpu... you will need a thread for each core probably to make it grab all core 20% cpu, maybe double it for HT.. you need to check) |
||
|
|

