I'm looking for a windows utility to consume CPU at a specified percentage so that I can test my app under conditions of restricted processor resources.

I googled around and saw a reference to CPUGRAB.exe, but can't find a download location.

link|improve this question

1  
Have you thought of using MS Office or one of the fabulous Rational tools? They're ideal for this sort of thing :-) – paxdiablo Oct 29 '09 at 4:53
Or (upgrade to vista if not yet using) hibernate Your pc instead of shutting down so that it has 3 days of uptime. That should do :) – naugtur Mar 13 '10 at 19:12
feedback

5 Answers

up vote 0 down vote accepted

Max CPU will do some of what you want but doesn't have the percentage granularity.

link|improve this answer
feedback

Prime95

link|improve this answer
feedback

Google for just cpugrab. There are cpugrab.zip and cpugrab.rar files all over the place (rapidshare, badongo, etc). They may or may not be legal, I can't comment on that.

link|improve this answer
feedback

I beleive you need CPU Speed Adjuster. It is freeware unlike some others:

http://www.softpedia.com/get/Tweak/System-Tweak/CPU-Speed-Adjuster.shtml

link|improve this answer
feedback

On my Windows XP laptop, compiling bogdown.c:

int main(void) {
    int i;
    while ( 1 ) ++i;
    return 0;
}

w/o any optimizations and then starting two instances uses utilizes both cores to the max and makes starting any program or typing into the textbox on SO a chore.

If you want to make it harder for the OS to take away time slices from bogdown.exe, you can increase the priorities of the processes in Task Manager, but beware, your system may become very unresponsive.

If you want to simulate limited memory, calloc (not malloc) a gigabyte or two of memory in bogdown.exe.

Another alternative is to have at least a couple of programs encoding video while you test your app.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.