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
In some of the benchmarks, if I replace .insert() with code based on entry, the benchmarks run slower. If we could get these to performance parity, then we can delete the .insert() code, since it is duplicated by the functionality in .entry().
To test this, you can update insert to be like this (note insert_full uses entry right now):
In some of the benchmarks, if I replace
.insert()
with code based on entry, the benchmarks run slower. If we could get these to performance parity, then we can delete the.insert()
code, since it is duplicated by the functionality in.entry()
.To test this, you can update insert to be like this (note
insert_full
usesentry
right now):The following is the benchmark difference I see when using
entry
ininsert
.The hashmap benchmarks can be ignored - ordermap is the interesting part. (The hashmap benchmarks are controls.)
Change from before to after.
The text was updated successfully, but these errors were encountered: