Branchless Programming in C++
https://youtu.be/g-WPhYREFjk?si=dEWX6nsHxx30uGDy
https://youtu.be/g-WPhYREFjk?si=dEWX6nsHxx30uGDy
YouTube
Branchless Programming in C++ - Fedor Pikus - CppCon 2021
https://cppcon.org/
https://github.com/CppCon/CppCon2021
---
Have you ever written code like this:
void f(bool b, long x, long& s) { if (b) s += x; }
Probably you have. Would you like me to tell you how much performance you left on the table? With a small…
https://github.com/CppCon/CppCon2021
---
Have you ever written code like this:
void f(bool b, long x, long& s) { if (b) s += x; }
Probably you have. Would you like me to tell you how much performance you left on the table? With a small…
👍2