Tags: #cppcon2016 #cache #optimize #hashtables #video
https://www.youtube.com/watch?v=aXj_DsIx1xs&app=desktop
https://www.youtube.com/watch?v=aXj_DsIx1xs&app=desktop
YouTube
CppCon 2016: Christiaan Pretorius “Cache Optimized Hash Tables”
http://CppCon.org
—
Presentation Slides, PDFs, Source Code and other presenter materials are available at: https://github.com/cppcon/cppcon2016
—
Hashes and caches, why another hash library ?
Problems,shortcomings and advantages of current open source hash…
—
Presentation Slides, PDFs, Source Code and other presenter materials are available at: https://github.com/cppcon/cppcon2016
—
Hashes and caches, why another hash library ?
Problems,shortcomings and advantages of current open source hash…
Tags: #optimize #code
"In this post I would like to propose a technique based on levels of abstraction to transform an obscure piece of code into expressive and elegant one..."
http://www.fluentcpp.com/2017/01/03/super-expressive-code-by-raising-levels-of-abstraction/
"In this post I would like to propose a technique based on levels of abstraction to transform an obscure piece of code into expressive and elegant one..."
http://www.fluentcpp.com/2017/01/03/super-expressive-code-by-raising-levels-of-abstraction/
Fluent C++
Super expressive code by Raising Levels of Abstraction
Expressive code in C++
Small Vector Optimization
#Optimize #Vector #Memory
https://stoyannk.wordpress.com/2017/11/18/small-vector-optimization/
#Optimize #Vector #Memory
https://stoyannk.wordpress.com/2017/11/18/small-vector-optimization/
Prog stuff
Small vector optimization
One of the key performance optimization techniques involves reducing the number of dynamic memory allocation that a program does. The reasons are: Generic memory allocations are relatively slow Hea…