The cpu-speed tag has no wiki summary.
14
votes
3answers
11k 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 ...
17
votes
10answers
4k 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 ...
12
votes
4answers
4k views
Finding out the CPU clock frequency (per core, per processor)
Programs like CPUz are very good at giving in depth information about the system (bus speed, memory timings, etc.)
However, is there a programmatic way of calculating the per core (and per processor, ...
7
votes
2answers
2k views
How to keep CPU from 'sleeping' when screen is turned off in Android?
I have an application in which I am sending network data over WiFI. Everything is fine until I turn the display off or the device goes to 'sleep'. I'm already locking the WiFi however, it seems to be ...
10
votes
1answer
998 views
How has CPU architecture evolution affected virtual function call performance?
Years ago I was learning about x86 assembler, CPU pipelining, cache misses, branch prediction, and all that jazz.
It was a tale of two halves. I read about all the wonderful advantages of the lengthy ...
3
votes
2answers
2k views
How to Disable Dynamic Frequency Scaling?
I would like to do some microbenchmarks, and try to do them right. Unfortunately dynamic frequency scaling makes benchmarking highly unreliable.
Is there a way to programmatically (C++, Windows) find ...
5
votes
3answers
514 views
How to profile django application with respect to execution time?
My Django application is insanely slow, I want to figure out what is taking time :
I tried Django-debug-toolbar but was unable to find a panel that can give me the break-up of the load time.
My ...