Commit 2acfd4d0 authored by Yinghai Lu's avatar Yinghai Lu Committed by Facebook Github Bot

Clang-format the flag declarations in Benchmark.cpp

Summary: This patch prepares the later diff which will add a new flag. Just make things nice.

Reviewed By: igorsugak

Differential Revision: D3990600

fbshipit-source-id: d4f53a5b44708ca025e4f6615d161b24de685931
parent 427c43f4
...@@ -35,18 +35,25 @@ using namespace std; ...@@ -35,18 +35,25 @@ using namespace std;
DEFINE_bool(benchmark, false, "Run benchmarks."); DEFINE_bool(benchmark, false, "Run benchmarks.");
DEFINE_bool(json, false, "Output in JSON format."); DEFINE_bool(json, false, "Output in JSON format.");
DEFINE_string(bm_regex, "", DEFINE_string(
"Only benchmarks whose names match this regex will be run."); bm_regex,
"",
DEFINE_int64(bm_min_usec, 100, "Only benchmarks whose names match this regex will be run.");
"Minimum # of microseconds we'll accept for each benchmark.");
DEFINE_int64(
DEFINE_int64(bm_min_iters, 1, bm_min_usec,
"Minimum # of iterations we'll try for each benchmark."); 100,
"Minimum # of microseconds we'll accept for each benchmark.");
DEFINE_int32(bm_max_secs, 1,
"Maximum # of seconds we'll spend on each benchmark."); DEFINE_int64(
bm_min_iters,
1,
"Minimum # of iterations we'll try for each benchmark.");
DEFINE_int32(
bm_max_secs,
1,
"Maximum # of seconds we'll spend on each benchmark.");
namespace folly { namespace folly {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment