Search code examples
How to properly increment some array key, even if key needs to be created?...


phpoptimizationmicro-optimization

Read More
Mixing SSE with AVX128 for shorter instructions?...


assemblyx86sseavxmicro-optimization

Read More
Is it useful to use VZEROUPPER if your program+libraries contain no SSE instructions?...


performanceassemblyx86avxmicro-optimization

Read More
C optimization: conditional store to avoid dirtying a cache line...


ccachingcpu-cachemicro-optimizationlibuv

Read More
Setting and clearing the zero flag in x86...


performanceassemblyx86x86-64micro-optimization

Read More
How can the rep stosb instruction execute faster than the equivalent loop?...


performanceassemblyoptimizationx86micro-optimization

Read More
Why are loops always compiled into "do...while" style (tail jump)?...


performanceloopsassemblyoptimizationmicro-optimization

Read More
Shorter x86 call instruction...


assemblyx86callmicro-optimizationmachine-code

Read More
Are there any efficient micro-optimizations to find the number of unique grid paths?...


javamicro-optimization

Read More
Is this a missed optimization in GCC, loading an 16-bit integer value from .rodata instead of an imm...


cgccx86-64compiler-optimizationmicro-optimization

Read More
How is a critical path formed when there is a data dependency between a loop iterations while a CPU ...


performanceassemblyx86-64cpu-architecturemicro-optimization

Read More
Why is POP slow when using register R12?...


performancex86intelcpu-architecturemicro-optimization

Read More
Is it more efficient to multiply within the address displacement or outside it?...


assemblyoptimizationx86micro-optimizationaddressing-mode

Read More
what is faster: in_array or isset?...


phpperformancemicro-optimization

Read More
What is faster in Python, "while" or "for xrange"...


pythonmicro-optimization

Read More
Should I use Java's String.format() if performance is important?...


javastringperformancestring-formattingmicro-optimization

Read More
How to unroll a loop of a dot product in mips after re-ordering instructions?...


assemblymipscpu-architecturemicro-optimizationloop-unrolling

Read More
Most compact way to test for a negative number in x86 assembly?...


assemblyx86micro-optimization

Read More
test $x,%dil vs. test $x,%edi...


assemblyoptimizationx86-64attmicro-optimization

Read More
Why should code be aligned to even-address boundaries on x86?...


assemblyx86memory-alignmentmicro-optimization

Read More
Any possible code that can flip a bit/integer/bool between 0 and 1 in single CPU instruction...


c++cassemblyx86micro-optimization

Read More
A checklist for Spacy optimization?...


optimizationnlpspacymicro-optimization

Read More
Delete a node from a linked list in C...


coptimizationdata-structureslinked-listmicro-optimization

Read More
Perf record after my code reaches a certain point?...


x86-64perfmicro-optimization

Read More
X86: How to set lower half of xmm0 to 0, without affecting the upper half?...


assemblyx86ssesimdmicro-optimization

Read More
How can I guarantee that a variable will never be zero without using a conditional statement in C?...


ccompiler-optimizationmicro-optimization

Read More
Passing a struct with constant data to a function in C...


cgccstructcompiler-optimizationmicro-optimization

Read More
Testing an Algorithms speed. How?...


cperformanceprofilingbenchmarkingmicro-optimization

Read More
AVX512BW: handle 64-bit mask in 32-bit code with bsf / tzcnt?...


assemblyx8632-bitmicro-optimizationavx512

Read More
For what values would accessing single bytes for XOR logic work faster than multiplication to find i...


cperformancex86micro-optimization

Read More
BackNext