Tagged Questions

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 ...
3
votes
4answers
79 views

Would writing HTML with PHP's echo vs writing plain HTML cause any differences in performance?

Which is better in terms of CPU optimization for a web server? Writing plain HTML and inserting PHP code here and there? <script ...
2
votes
4answers
237 views

Machine code alignment

I am trying to understand the principles of machine code alignment. I have an assembler implementation which can generate machine code in run-time. I use 16-bytes alignment on every branch ...
0
votes
0answers
73 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 ...