Tag Archives: Coding

Adventures in SIMD – Part2 – AutoVectorization

AutoVectorization ideally should solve all our SIMDization problems, it is where the compiler looks at our code and decides it can craft better vectorized code for us and assembles the instructions using SIMD vector optimized instructions. In practice AutoVectorization is … Continue reading

Posted in C++, Development | Tagged , , , , , | Leave a comment

When I like to use the power of classes

I look at a lot of other peoples code, legacy code from 20 years ago all the way up to stuff just written.. and one common thread comes out.. developers don’t always use the power of classes. What I mean by … Continue reading

Posted in C++, Development | Tagged , , | Leave a comment