| 346 | } |
| 347 | |
| 348 | static void ReadLevels_BitPack(::benchmark::State& state) { |
| 349 | int16_t max_level = static_cast<int16_t>(state.range(0)); |
| 350 | int num_levels = static_cast<int>(state.range(1)); |
| 351 | int batch_size = static_cast<int>(state.range(2)); |
| 352 | int level_repeat_count = static_cast<int>(state.range(3)); |
| 353 | DecodeLevels(Encoding::BIT_PACKED, max_level, num_levels, batch_size, |
| 354 | level_repeat_count, state); |
| 355 | } |
| 356 | |
| 357 | static void ReadLevelsArguments(::benchmark::internal::Benchmark* b) { |
| 358 | b->ArgNames({"MaxLevel", "NumLevels", "BatchSize", "LevelRepeatCount"}) |
nothing calls this directly
no test coverage detected