File tree Expand file tree Collapse file tree 1 file changed +3
-4
lines changed
model_analyzer/config/generate Expand file tree Collapse file tree 1 file changed +3
-4
lines changed Original file line number Diff line number Diff line change @@ -210,8 +210,7 @@ def _generate_perf_configs(self) -> None:
210210 for params in utils .generate_parameter_combinations (
211211 perf_config_non_parameter_values
212212 ):
213- # FIXME 1772 variable name
214- configs_with_concurrency = []
213+ configs_with_inference_load = []
215214 for parameter in self ._parameters :
216215 new_perf_config = PerfAnalyzerConfig ()
217216
@@ -231,8 +230,8 @@ def _generate_perf_configs(self) -> None:
231230 # User provided flags can override the search parameters
232231 new_perf_config .update_config (self ._perf_analyzer_flags )
233232
234- configs_with_concurrency .append (new_perf_config )
235- self ._configs .append (configs_with_concurrency )
233+ configs_with_inference_load .append (new_perf_config )
234+ self ._configs .append (configs_with_inference_load )
236235
237236 def _create_non_parameter_perf_config_values (self ) -> dict :
238237 perf_config_values = {
You can’t perform that action at this time.
0 commit comments