| 621 | using F14TestTable = folly::F14FastSet< |
| 622 | uint64_t*, |
| 623 | F14TestHasher, |
| 624 | F14TestComparer, |
| 625 | memory::StlAllocator<uint64_t*>>; |
| 626 | std::unique_ptr<F14TestTable> f14Table_; |
| 627 | }; |
| 628 | |
| 629 | void combineResults( |
| 630 | std::vector<HashTableBenchmarkRun>& results, |
| 631 | HashTableBenchmarkRun run) { |
| 632 | if (!results.empty() && results.back().params.title == run.params.title) { |
| 633 | return; |