Tagged Questions
5
votes
3answers
737 views
Measure CPU frequency (x86 / x64)
I'm looking for some kind of a library that gives me accurate CPU frequency values periodically on both Intel and AMD processors, on 32-bit and 64-bit Windows.
The purpose of this is to accuratly ...
10
votes
4answers
1k views
Measure CPU speed by counting assembly instructions
Edit: My original example had a silly mistake. After fixing it I still get weird results, though.
In my naive attempt to measure my CPU speed the "brute-force" way, I made the program below:
...