The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
0answers
101 views

What are the best .NET performance practices? [closed]

What are the best perfomance CPU/Memory practices for speed? I have a project (trading platform) http://code.google.com/p/sample-trade/ and i need to process large data in short time? I have ...
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 ...
0
votes
1answer
75 views

Will a larger binary with parts of code that are not executed at the time, affect use of level 2 CPU memory?

It appears that CPUs run significantly faster if their L2 is not filled. Will a programmer be better off to code something that will eventually be smaller in binary, even if parts of that code are not ...
4
votes
6answers
4k views

Can we benchmark how fast CUDA or OpenCL is compared to CPU performance?

How much faster can an algorithm on CUDA or OpenCL code run compared to a general single processor core? (considering the algorithm is written and optimized for both the CPU and GPU target). I know ...
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 ...
1
vote
1answer
312 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 ...
1
vote
4answers
5k views

How do I get CPU Clock Speed in C++ (Linux)?

How can I get the CPU clock speed in C++? I am running Ubuntu 9.10 if that makes any difference.
14
votes
1answer
11k views

Android game loop, how to control speed and frame rate

I've written a game for Android, and I've tested it on the Dev Phone 1. It works perfectly, the speed is just right. However, I'm sure phone CPU's are getting faster. They may already be faster ...
2
votes
5answers
596 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 between ...
1
vote
1answer
745 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 ...
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 ...
6
votes
26answers
828 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 ...
1
vote
9answers
852 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
2answers
274 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 techniques that make ...
15
votes
14answers
2k 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 took to execute. ...
2
votes
3answers
2k 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 System; using ...

1 2