You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I noticed that inserting elements in flat_map<int,int> is around 2 times slower going from version boost-1.79.0 to boost-1.80.0. I've found the relevant commit, 0d5068.
Sample code that is 2x faster when said commit is reverted:
#include<boost/container/flat_map.hpp>intmain() {
boost::container::flat_map<int, int> m_flat_map;
for (int i = 100000; i >= 0; --i) m_flat_map[i] = 1;
return0;
}
compiler: clang 15.0.7, linux-gnu platform
The text was updated successfully, but these errors were encountered:
Hello,
I noticed that inserting elements in
flat_map<int,int>
is around 2 times slower going from version boost-1.79.0 to boost-1.80.0. I've found the relevant commit, 0d5068.Sample code that is 2x faster when said commit is reverted:
compiler: clang 15.0.7, linux-gnu platform
The text was updated successfully, but these errors were encountered: