add whash wname option

This commit is contained in:
2019-12-28 09:57:43 -05:00
parent 356c8e4c64
commit 345e684adc
4 changed files with 20 additions and 16 deletions

View File

@@ -35,7 +35,7 @@ static void BM_whash(benchmark::State &state) {
void *buf = load_test_file(&size);
for (auto _ : state) {
whash_mem(buf, tmp, size, state.range(), 0);
whash_mem(buf, tmp, size, state.range(), 0, "haar");
}
free(buf);