13
votes
14answers
1k views
Exactly how “fast” are modern CPUs?
When I used to program embedded systems and early 8/16-bit PCs (6502, 68K, 8086) I had a pretty good handle on exacly how long (in nanoseconds or microseconds) each instruction too …
2
votes
3answers
106 views
Comparing CPU speed likely improvements for business hardware upgrade justification
I have c# Console app, Monte Carlo simulation entirely CPU bound, execution time is inversely proportional to the number of dedicated threads/cores available (I keep a 1:1 ratio be …
1
vote
1answer
183 views
Using Python (Bash?) to get OS-level system information (CPU Speed)
I want to repeat this question using python. Reason is I have access to 10 nodes in a cluster and each node is not identical. They range in performance and I want to find which is …
0
votes
0answers
123 views
New i7 is slower than old Core 2 Duo? Why? (BIOS programming) [closed]
I've always wondered why the companies who make BIOS' either have terrible engineering psychologists or none at all. But without wasting your time further with random speculative q …
5
votes
25answers
526 views
Will optimizing code become unnecessary?
If Moore's Law holds true, and CPUs/GPUs become increasingly fast, will software (and, by association, you software developers) still push the boundaries to the extent that you sti …
3
votes
10answers
317 views
Is the inequality operator faster than the equality operator?
I know this is a micro-optimization, so I ask out of pure curiosity.
Logically, a microprocessor does not need to compare all the bits of both operands of an inequality operator …
0
votes
9answers
328 views
CPU Utilization
Q1. What are best practices for a writing a code that does not consume CPU but still achieve a great performance? The question is very generic. What I seek over here is to list dow …
0
votes
2answers
611 views
How to detect CPU speed on Windows 64bit?
I've found the following code from here "http://www.boyet.com/Articles/CodeFromInternet.html".
It returns the speed of the CPU in GHz but works only on 32bit Windows.
using Syste …
0
votes
2answers
113 views
Can increment of a register be used to determine the clock rate?
Can increment of a register (in a loop) be used to determine the (effective) clock rate?
I've naturally assumed it can, but I was commented that Cpu's may implant Super-scalar tech …
