Faster, Easier, Simpler Vectors - David Stone - CppCon 2021

  Рет қаралды 29,658

CppCon

CppCon

Күн бұрын

Пікірлер: 26
@pingkai
@pingkai 10 ай бұрын
At this point, C++ is always solving problem that created by itself, which created so much opportunities for the standard!
@DerekWoolverton
@DerekWoolverton Жыл бұрын
The issue with relocate vs move is whether we should take control as programmers, or lean on the compilers to get smart enough to optimize the move-delete idiom.
@TarikZakariaBenmerar
@TarikZakariaBenmerar 2 жыл бұрын
How the append has been converted into a set of low level instructions and no function calls ?
@cemgecgel4284
@cemgecgel4284 2 жыл бұрын
compiler magic
@Bbdu75yg
@Bbdu75yg Жыл бұрын
Why cant we just malloc an element , and have vector of pointers ? No need of move ,emplace_back ?
@StanleyPinchak
@StanleyPinchak Жыл бұрын
Cache locality? No need for additional indirection? Ability to memcpy contents?
@ragnarlothbrok367
@ragnarlothbrok367 2 жыл бұрын
Sometimes I don't understand a shit
@broken_abi6973
@broken_abi6973 2 жыл бұрын
where did he find the "stable vector" he referred to? His description seems to be different than boost::stable_vector
@pervognsen_bitwise
@pervognsen_bitwise 2 жыл бұрын
I think he was referring to the concept more so than any particular implementation. The idea is to reserve a memory range with VirtualAlloc/mmap based on the max capacity and then growing the capacity extends the commit range in place rather than reallocating. Both allocation/deallocation and first-time page access incurs kernel mode transitions (syscalls and page faults, respectively), so it's not something you want for short lived or high churn vectors. But it can be useful if your application has a relatively small handful of big vectors where you need stability and/or performance. (Of course, if you just want stability and performance is not an issue, you can allocate and store the elements outside of the vector itself, as std::unordered_map has to do. The vector would still own those out-of-line elements, so the value semantics would be preserved.)
@barakap2372
@barakap2372 2 жыл бұрын
@@pervognsen_bitwise Do you know any stable vector implementation which has just 1 memory chunk and uses mmap or VirtualAlloc and os-specific functions?
2 жыл бұрын
Why there is no call to operator delete in the compiled code from the alternative implementation of vector? (At least in the insert example.)
@joy1710
@joy1710 2 жыл бұрын
I don't get it why allocator is not part of vector interface. Do all these vector types assume std::allocator?
@anthonynjoroge5780
@anthonynjoroge5780 2 жыл бұрын
What do you mean? The allocator type is the second template type parameter. For example you can specify your own custom allocator as follows: vector v.
@JohnDlugosz
@JohnDlugosz 2 жыл бұрын
Look for some of the talks from John Lacos. He explains why it is good for types to implement the allocator feature, for enterprise scale software.
@Roibarkan
@Roibarkan 2 жыл бұрын
On simple optimizations: m.kzbin.info/www/bejne/qWXan6ifeNyHfbc
@mr_waffles_the_dog
@mr_waffles_the_dog 2 жыл бұрын
thanks!
@passerby4507
@passerby4507 2 жыл бұрын
Welp, the talk didn't deliver what it promised in the title. I'm not sure what I learnt, and I'm not sure in what situation I would recommend someone listen to this.
@Bolpat
@Bolpat 2 жыл бұрын
I had a really hard time to understand _append_from_capacity._ It has a horrible name. It’s not perfect, but _assume_values_in_cpacity_ would even be a better name and that’s not even that great.
@pervognsen_bitwise
@pervognsen_bitwise 2 жыл бұрын
I've seen this kind of thing called append_uninitialized(size_t n) which just does ensure_capacity(size + n); size += n. You'll find something akin to this in many non-std vector implementations. In Unreal Engine, for example, it's TArray::AddUninitialized.
@David-fn1rd
@David-fn1rd Жыл бұрын
Presenter here, and I agree, the name is horrible. There is work to add this to std::vector, and part of that will include coming up with a (hopefully) great name.
@__hannibaalbarca__
@__hannibaalbarca__ Жыл бұрын
Good Programming Language Designed by aGood Mathematicians and to do such good thing like programming in mathematics headaches of assembling many mathematical field in one. Proofing process like in Topology, and we have to separate very close cases when we stadying vectorial spaces and topological spaces after Category theory and abstract algebra and algebraic geometry… this gave to programming designer more conceptual analysis of language.
@llothar68
@llothar68 Жыл бұрын
Mathematicians are more often than not terrible programmers.
@chipcode5538
@chipcode5538 2 жыл бұрын
Not faster , not easier and not simpler.
Twin Telepathy Challenge!
00:23
Stokes Twins
Рет қаралды 129 МЛН
Do you love Blackpink?🖤🩷
00:23
Karina
Рет қаралды 23 МЛН
Stop using std::vector wrong
23:14
The Cherno
Рет қаралды 151 М.
Branchless Programming in C++ - Fedor Pikus - CppCon 2021
1:03:57
PyO3: From Python to Rust and Back Again (with David Hewitt)
1:34:30
Developer Voices
Рет қаралды 11 М.
Master Pointers in C:  10X Your C Coding!
14:12
Dave's Garage
Рет қаралды 328 М.
Twin Telepathy Challenge!
00:23
Stokes Twins
Рет қаралды 129 МЛН