| 41 | namespace compute { |
| 42 | |
| 43 | std::vector<int64_t> HardwareFlagsForTesting() { |
| 44 | // Our key-hash and key-map routines currently only have AVX2 optimizations |
| 45 | return GetSupportedHardwareFlags({CpuInfo::AVX2}); |
| 46 | } |
| 47 | |
| 48 | class TestVectorHash { |
| 49 | private: |
no test coverage detected