I am writing a C code (on Linux) that needs to consume a certain amount of CPU when it's running. I am carrying out an experiment in which I trigger certain actions upon reaching a certain CPU threshold. So, once the Utilization reaches a certain threshold, I need to keep it at that state for say 30 seconds till I complete my experiments. I am monitoring the CPU Utilization using the top command.

So my questions are - 1. How do I increase the CPU Utilization to a given value (in a deterministic way if possible)? 2. Once I get to the threshold, is there a way to keep it at that level for a pre-defined time?

Sample output of top command (the 9th column is CPU used by the 'top' process) - 19304 abcde 16 0 5448 1212 808 R 0.2 0.0 0:00.06 top

Similar to above, I will look at the line in top which shows the utilization of my binary.

Any help would be appreciated. Also, let me know if you need more details.

Thanks!

link|improve this question
2  
Use a combination of sleep and a busy loop, sleep, busy loop, sleep, busy loop, etc. etc. to achieve any cpu utilization that you want. – David Heffernan Feb 8 at 21:03
1  
You can also have a look at the code of CPU limit. – Lars Kotthoff Feb 8 at 21:07
While a busy loop will obviously keep the reported CPU utilization at a minimum, you may want to throw some unaligned memory accesses in there in order to keep the CPU busy. – Daniel Kamil Kozar Feb 9 at 0:04
feedback

2 Answers

cpuburn is known to make CPU utilization so high that it raise its temperature to its max level. It seems there is no more official website about it, but you can still access to source code with Debian package or googlecode. It's implemented in asm, so you'll have to make some glue in order to interact with it in C.

link|improve this answer
feedback

Something of this sort should have a constant CPU utilization, in my opinion: md5sum < /dev/urandom

link|improve this answer
Hi there and thank you for providing an answer next to your questions. Are you sure that urandom won't block at certain points because it requests a reseed? It seems to me that simply performing hashes on known data is as efficient, and has less chance of blocking. – owlstead Feb 12 at 0:56
/dev/urandom won't block while /dev/random will. However, consuming data from either will diminish the entropy pool and may slow down some operations in the future (e.g. cryptography in ssh/ssl). Hashing /dev/zero should give you the same CPU consumption without the additional risks. – MichaƂ Kosmulski Feb 25 at 11:43
feedback

Your Answer

 
or
required, but never shown

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