this post was submitted on 28 Aug 2023
10 points (100.0% liked)

C++

1725 readers
2 users here now

The center for all discussion and news regarding C++.

Rules

founded 1 year ago
MODERATORS
top 1 comments
sorted by: hot top controversial new old
[–] [email protected] 4 points 1 year ago

The lost performance comes from the fact that vector::push_back has to check whether it needs to grow the vector, even though it will never happen in the convert_to_indices function. A sufficiently smart compiler could optimize this out, but neither GCC nor Clang do (and MSVC makes a complete hash of things).

Ok that one is new to me, I didn't know that despite the .reserve the compilers are still unable to figure that out.