Skip to content

Commit

Permalink
Use old BENCHMARK setup
Browse files Browse the repository at this point in the history
  • Loading branch information
PastaPastaPasta committed Jul 23, 2019
1 parent 21ace66 commit db5f316
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions src/bench/chacha20.cpp
Expand Up @@ -41,6 +41,10 @@ static void CHACHA20_1MB(benchmark::State& state)
CHACHA20(state, BUFFER_SIZE_LARGE);
}

BENCHMARK(CHACHA20_64BYTES, 500000);
BENCHMARK(CHACHA20_256BYTES, 250000);
BENCHMARK(CHACHA20_1MB, 340);
//TODO add back below once benchmarking backports are done
//BENCHMARK(CHACHA20_64BYTES, 500000);
//BENCHMARK(CHACHA20_256BYTES, 250000);
//BENCHMARK(CHACHA20_1MB, 340);
BENCHMARK(CHACHA20_64BYTES);
BENCHMARK(CHACHA20_256BYTES);
BENCHMARK(CHACHA20_1MB);

0 comments on commit db5f316

Please sign in to comment.