Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
fix typo
  • Loading branch information
chilo-ms committed Aug 11, 2025
commit ae1617abd9cf7eba583cb5da7b444f1e7559892c
4 changes: 2 additions & 2 deletions onnxruntime/test/perftest/command_args_parser.cc
Original file line number Diff line number Diff line change
Expand Up @@ -31,10 +31,10 @@ static const onnxruntime::perftest::PerformanceTestConfig& DefaultPerformanceTes
}

ABSL_FLAG(std::string, f, "",
"Specifies free dimensions by name to override with the specific values for performance optimization. Key-value paris are separated by space.\n"
"Specifies free dimensions by name to override with the specific values for performance optimization. Key-value pairs are separated by space.\n"
"[Usage]: -f \"dimension_name_1:override_value_1 dimension_name_2:override_value_2 ... \". Override value must > 0.");
ABSL_FLAG(std::string, F, "",
"Specifies free dimensions by denotation to override with the specific values for performance optimization. Key-value paris are separated by space.\n"
"Specifies free dimensions by denotation to override with the specific values for performance optimization. Key-value pairs are separated by space.\n"
"[Usage]: -F \"denotation_name_1:override_value_1 denotation_name_2:override_value_2 ... \". Override value must > 0.");
ABSL_FLAG(std::string, m, "duration", "Specifies the test mode. Value could be 'duration' or 'times'.");
ABSL_FLAG(std::string, e, "cpu", "Specifies the provider 'cpu','cuda','dnnl','tensorrt', 'nvtensorrtrtx', 'openvino', 'dml', 'acl', 'nnapi', 'coreml', 'qnn', 'snpe', 'rocm', 'migraphx', 'xnnpack', 'vitisai' or 'webgpu'.");
Expand Down
Loading