Dependable C: A subset of C for developers who want to develop, widely portable, and compilable, software in Classic Chttps://dependablec.org/
๐ฟ6๐4โค3
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โฆ
๐1