12 lines
355 B
C++
12 lines
355 B
C++
|
|
/// bench_main.cpp — Google Benchmark entry point
|
||
|
|
/// Usage:
|
||
|
|
/// ./vde_bench — run all registered benchmarks
|
||
|
|
/// ./vde_bench_bvh — BVH benchmarks only
|
||
|
|
/// ./vde_bench_delaunay --benchmark_min_time=0.05
|
||
|
|
///
|
||
|
|
/// Each benchmark executable is self-contained (links its own main).
|
||
|
|
|
||
|
|
#include <benchmark/benchmark.h>
|
||
|
|
|
||
|
|
BENCHMARK_MAIN();
|