From 398040ef80d3f9def01ab1e49ba98115c70c41fa Mon Sep 17 00:00:00 2001 From: Elias Bermudez Date: Wed, 8 Jun 2022 13:41:06 -0700 Subject: [PATCH] Update help message --- src/c++/perf_analyzer/perf_analyzer.cc | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/c++/perf_analyzer/perf_analyzer.cc b/src/c++/perf_analyzer/perf_analyzer.cc index 6935b9e2c..aa39f52f0 100644 --- a/src/c++/perf_analyzer/perf_analyzer.cc +++ b/src/c++/perf_analyzer/perf_analyzer.cc @@ -483,9 +483,9 @@ Usage(char** argv, const std::string& msg = std::string()) << FormatMessage( " --stability-percentage (-s): Indicates the allowed variation in " "latency measurements when determining if a result is stable. The " - "measurement is considered as stable if the max and min of the " - "recent 3 measurements are within (stability percentage)% of each " - "other in terms of both infer per second and latency. Default is " + "measurement is considered as stable if the ratio of max / min " + "from the recent 3 measurements is within (stability percentage)% " + "in terms of both infer per second and latency. Default is " "10(%).", 18) << std::endl;