Add efficient firstGeq overload for latestVersion

This commit is contained in:
2024-06-03 22:28:01 -07:00
parent ba11412584
commit b92f0ec227
5 changed files with 168 additions and 73 deletions

View File

@@ -97,6 +97,9 @@ void bulkFirstGeq() {
bench.run("bulkFirstGeq", [&] {
versionedMap.firstGeq(keys, versions, iterators, kNumQueries);
});
bench.run("bulkFirstGeq (latest version)",
[&] { versionedMap.firstGeq(keys, iterators, kNumQueries); });
}
int main() {