| 600 | std::unique_ptr<HashTable<true>> topTable_; |
| 601 | HashTableBenchmarkParams params_; |
| 602 | |
| 603 | // Timing set by test*Probe(). |
| 604 | float hashClocksPerRow_{0}; |
| 605 | float clocksPerRow_{0}; |
| 606 | |
| 607 | // hasher and comparer for F14 comparison test. |
| 608 | struct F14TestHasher { |
| 609 | // Same as mixNormalizedKey() in HashTable.cpp. |
| 610 | size_t operator()(uint64_t* value) const { |