BeCPP Symposium 2026 - Bryce Adelstein Lelbach - The CUDA C++ Developer's Toolbox
https://youtu.be/XShALzyd0YU
https://redd.it/1vd27y6
@r_cpp
https://youtu.be/XShALzyd0YU
https://redd.it/1vd27y6
@r_cpp
YouTube
BeCPP Symposium 2026 - Bryce Adelstein Lelbach - The CUDA C++ Developer's Toolbox
Event: BeCPP Symposium 2026 ( https://becpp.org/Symposium2026/ )
Slides: https://becpp.org/blog/2026/04/16/slides-of-the-becpp-symposium-2026-sessions/
Speaker: Bryce Adelstein Lelbach
Title: The CUDA C++ Developer's Toolbox
Abstract:
Getting the most out…
Slides: https://becpp.org/blog/2026/04/16/slides-of-the-becpp-symposium-2026-sessions/
Speaker: Bryce Adelstein Lelbach
Title: The CUDA C++ Developer's Toolbox
Abstract:
Getting the most out…
How fast is C++26's std::hive?
https://lemire.me/blog/2026/08/02/how-fast-is-c26s-stdhive/
https://redd.it/1vdx0rf
@r_cpp
https://lemire.me/blog/2026/08/02/how-fast-is-c26s-stdhive/
https://redd.it/1vdx0rf
@r_cpp
Daniel Lemire's blog
How fast is C++26’s std::hive?
C++26 adds a new container to the standard library: std::hive. It is meant to occupy the ground between std::vector and std::list. Like a vector, it keeps its elements in contiguous blocks of memory, so scanning it does not require you to chase a pointer…