Results 1 to 4 of 4
Hi, I've got a question about power management event on different manufacturers of processors.
I write a c++ program where I use TSC timer, but every time when tested processor ...
Enjoy an ad free experience by logging in. Not a member yet? Register.
- 05-18-2012 #1Just Joined!
- Join Date
- May 2012
- Posts
- 2
TSC and power management events
Hi, I've got a question about power management event on different manufacturers of processors.
I write a c++ program where I use TSC timer, but every time when tested processor have embedded power management technology and CPU Frequency scaling, I have troubles. Does anybody know how can I detect this feature of CPU? Is this information available from CPUID instruction? I will really appreciate any help on this point. Thanks
Irina
- 05-22-2012 #2Just Joined!
- Join Date
- May 2012
- Posts
- 11
It is kernel dependant, but if you try:
you will get all avalable info on the cpu, pay attention to the flags, and stepping values.Code:cat /proc/cpuinfo
- 05-22-2012 #3Just Joined!
- Join Date
- May 2012
- Posts
- 2
In that case, what is the conclusion if I have blank space in front of "power management" line?
- 05-23-2012 #4Just Joined!
- Join Date
- May 2012
- Posts
- 11
I'm not an expert in this field, but I would ignore the "power managment" line, and rely solely on the flags and stepping. There are many different forms of power managment, find out which ones affect your application and use good old google to check what the flag is for that feature.


Reply With Quote
