Skip to content

Commit

Permalink
update help text
Browse files Browse the repository at this point in the history
  • Loading branch information
edgchen1 committed Jan 23, 2024
1 parent b6462e1 commit 7071126
Showing 1 changed file with 7 additions and 6 deletions.
13 changes: 7 additions & 6 deletions onnxruntime/test/run_benchmark.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,24 +38,25 @@ def parse_args():
dest="patterns",
action="extend",
nargs="+",
help="Benchmark pattern to run. Each pattern value will have its own invocation of the "
"benchmark program (passed to the benchmark program with the --benchmark_filter option). "
"To list the benchmark test names that are matched by these patterns, run the benchmark program with the "
"--benchmark_list_tests option.",
help="Benchmark test name pattern to specify which benchmark tests to run. "
"Each pattern value will have its own invocation of the benchmark program (passed to the benchmark program "
"with the --benchmark_filter option). "
"To list the benchmark test names, run the benchmark program with the --benchmark_list_tests option.",
)
parser.add_argument(
"--repetitions",
type=int,
default=10,
help="Benchmark repetitions to run (passed to the benchmark program with the "
help="Number of benchmark run repetitions (passed to the benchmark program with the "
"--benchmark_repetitions option).",
)

parser.add_argument(
"--max-cv",
type=float,
default=0.05,
help="Maximum allowed CV (stddev / mean) value.",
help="Maximum allowed CV (stddev / mean) value. "
"The CV value is a number, not a percentage. E.g., a value of 0.05 corresponds to 5%.",
)
parser.add_argument(
"--max-attempts",
Expand Down

0 comments on commit 7071126

Please sign in to comment.