Tagged Questions
7
votes
3answers
4k views
How to detect android cpu speed?
I would like to detect how fast is the device on with my Android application is running?
Is there any API to do it on Android? Or do I have to benchmark it by myself?
If the device has got slow CPU ...
7
votes
26answers
760 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 still need to optimize ...
6
votes
10answers
2k 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 in order to ...
1
vote
1answer
602 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 the best computer to ...
1
vote
9answers
625 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 down different ...
0
votes
0answers
182 views
How to compute the theoretical peak performance of CPU
all
Here is my cat /proc/cpuinfo output:
...
processor : 15
vendor_id : GenuineIntel
cpu family : 6
model : 26
model name : Intel(R) Xeon(R) CPU ...
0
votes
1answer
142 views
Minimize the number of cross-core context switches
I was experimenting a lot with application profiling lately (using Visual Studio Performance Wizard). While working with Concurrency indicators, I've noticed the fact that when the application runs ...