Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in optimization

Is it possible to micro-optimize "x = max(a,b); y = min(a,b);"?

How often do you worry about how many if cases will need to be processed?

Producing the fastest possible executable

Efficency of Comparisons in C++? ( abs(X)>1 vs abs(x) != 0)

How to explain at your boss that code/resources optimization is important?

performance optimization

Which is the best way, in C, to see if a number is divisible by another?

What is preferred option for assignment and formatting?

c++ optimization

Is masking required in this case?

c optimization masking

Runtime cpu detection in dynamic linker (ld.so)

c linux optimization linker

OpenCL Performance Optimization

optimization opencl gpgpu

Abort a list comprehension

What's the fastest algorithm to divide an integer by 3 without using a division instruction? [duplicate]

Why is moving return to the end of the function less efficient? [closed]