1
1
mirror of https://github.com/henrydcase/pqc.git synced 2024-11-22 23:48:58 +00:00
pqcrypto/test/bench/main.cc

11 lines
217 B
C++
Raw Normal View History

2022-02-02 21:32:00 +00:00
#include <benchmark/benchmark.h>
void register_sphincs_benches();
int main(int argc, char** argv)
{
register_sphincs_benches();
benchmark::Initialize(&argc, argv);
benchmark::RunSpecifiedBenchmarks();
}