Search code examples
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
How can I see which i686 instructions are faster...

assemblyx86cpu-architectureosdevmicro-optimization

Read More
What code is more CPU expensive: while(*p) or while(i--)?...

cmicro-optimization

Read More
Using SIMD/AVX/SSE for tree traversal...

performanceassemblysimdmicro-optimizationavx

Read More
' ... != null' or 'null != ....' best performance?...

javaperformancemicro-optimization

Read More
LEA vs MOV + INC for incrementing a variable and storing it in another one?...

assemblyx86-64intelmicro-optimization

Read More
What's the most efficient way to swap 4 16-bit integers on a 64-bit processor?...

c++assemblymicro-optimization

Read More
Is there a way to "unfetch" a cache line?...

cachingcompiler-optimizationcpu-cachemicro-optimizationprefetch

Read More
Avoiding the overhead of C# virtual calls...

c#virtual-functionsmicro-optimization

Read More
Is it more efficient to return a string literal or a const string in each subtype in Java?...

javamemorymicro-optimization

Read More
Why is strtolower slightly slower than strtoupper?...

phpcperformancemicro-optimizationmicrobenchmark

Read More
Fastest way to take the average of two signed integers in x86 assembly?...

assemblyoptimizationx86averagemicro-optimization

Read More
Efficiently loading both RAX and R8 with the same small positive number...

assemblyx86-64micro-optimizationinstruction-encoding

Read More
`test` vs `cmp` for one-bit registers comparison...

assemblyoptimizationx86x86-64micro-optimization

Read More
Does it make sense to use a relaxed load followed by a conditional fence, if I don't always need...

c++multithreadingatomicmicro-optimizationmemory-barriers

Read More
How expensive it is to cast from int to short in Java...

javacastingintmicro-optimization

Read More
Why does gcc implement fmin and fmax in three different ways?...

assemblygccx86-64micro-optimization

Read More
Is there some benefit in the following assembly commands?...

assemblyx86x86-16masmmicro-optimization

Read More
Is there a better way to any detect bits that are set in a 16-byte array of flags?...

c++x86-64simdssemicro-optimization

Read More
How to exchange between 2 bits in a 1-byte number...

assemblyx86bit-manipulationmicro-optimization

Read More
Can x86's MOV really be "free"? Why can't I reproduce this at all?...

cassemblyx86cpu-architecturemicro-optimization

Read More
About negate a sign-integer in mips?...

assemblymipscpu-architecturemicro-optimizationmips32

Read More
BackNext