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…
👍3
p3100r5.pdf
862 KB
A framework for systematically addressing undefined behaviour in the C++ Standard
https://www.open-std.org/jtc1/sc22/wg21/docs/papers/2025/p3100r5.pdf
https://www.open-std.org/jtc1/sc22/wg21/docs/papers/2025/p3100r5.pdf
👾1