@@ -63,6 +63,7 @@ def get_test_options():
6363 OptionStruct ("bool" , "profile" ,"--perf-output" ),
6464 OptionStruct ("bool" , "profile" ,"--run-config-search-disable" ),
6565 OptionStruct ("bool" , "profile" ,"--run-config-profile-models-concurrently-enable" ),
66+ OptionStruct ("bool" , "profile" ,"--request-rate-range-search-enable" ),
6667 OptionStruct ("bool" , "profile" ,"--reload-model-disable" ),
6768 OptionStruct ("bool" , "profile" ,"--early-exit-enable" ),
6869 OptionStruct ("bool" , "profile" ,"--skip-summary-reports" ),
@@ -78,6 +79,8 @@ def get_test_options():
7879 OptionStruct ("int" , "profile" , "--perf-analyzer-max-auto-adjusts" , None , "100" , "10" ),
7980 OptionStruct ("int" , "profile" , "--run-config-search-min-concurrency" , None , "2" , "1" ),
8081 OptionStruct ("int" , "profile" , "--run-config-search-max-concurrency" , None , "100" , "1024" ),
82+ OptionStruct ("int" , "profile" , "--run-config-search-min-request-rate-range" , None , "2" , "1" ),
83+ OptionStruct ("int" , "profile" , "--run-config-search-max-request-rate-range" , None , "100" , "1024" ),
8184 OptionStruct ("int" , "profile" , "--run-config-search-min-model-batch-size" , None , "100" , "1" ),
8285 OptionStruct ("int" , "profile" , "--run-config-search-max-model-batch-size" , None , "100" , "128" ),
8386 OptionStruct ("int" , "profile" , "--run-config-search-min-instance-count" , None , "2" , "1" ),
@@ -132,6 +135,7 @@ def get_test_options():
132135 # expected_default_value
133136 OptionStruct ("intlist" , "profile" , "--batch-sizes" , "-b" , "2, 4, 6" , "1" ),
134137 OptionStruct ("intlist" , "profile" , "--concurrency" , "-c" , "1, 2, 3" , None ),
138+ OptionStruct ("intlist" , "profile" , "--request-rate-range" , "-rrr" , "1, 2, 3" , None ),
135139 OptionStruct ("stringlist" , "profile" , "--triton-docker-mounts" , None , "a:b:c, d:e:f" , None , extra_commands = ["--triton-launch-mode" , "docker" ]),
136140 OptionStruct ("stringlist" , "profile" , "--gpus" , None , "a, b, c" , "all" ),
137141 OptionStruct ("stringlist" , "profile" , "--inference-output-fields" , None , "a, b, c" ,
0 commit comments