Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in micro-optimization

How do I optimize a loop which can be fully strict

Threshold an absolute value

Why is strtolower slightly slower than strtoupper?

java micro-optimization: combine set of boolean instance variables to bit vector based on int

In Java, should Integer object be preferred over int primitive (same for other numeric types)?

C++ fixed size arrays vs multiple objects of same type

c++ c micro-optimization

is i=(i+1)&3 faster than i=(i+1)%4

c++ micro-optimization

What is faster in Python, "while" or "for xrange"

python micro-optimization

Is x >= 0 more efficient than x > -1?

How to improve performance on a function that operates on two arrays in clojure

Why move 32-bit register to stack then from stack to xmm register?

Weird performance effects from nearby dependent stores in a pointer-chasing loop on IvyBridge. Adding an extra load speeds it up?

Ever any performance different between Java >> and >>> right shift operators?

Why does the compiler not always optimize away local variables?

Non-virtual interface? (Need a very performant low level abstraction)

Is it useful to check if a Java collection is empty before beginning iteration?

C# lambda allocation and collection

MIPS (curiosity) faster way of clearing a register?

Accessing arbitrary 16-bit elements packed in a 128-bit register

What is the most optimal way to use a C# struct as the key of a dictionary?