Skip to content

Commit

Permalink
remove duplicate argparser arguments
Browse files Browse the repository at this point in the history
  • Loading branch information
nv-hwoo committed Aug 7, 2024
1 parent f6dbd93 commit c7b1642
Showing 1 changed file with 0 additions and 19 deletions.
19 changes: 0 additions & 19 deletions genai-perf/genai_perf/parser.py
Original file line number Diff line number Diff line change
Expand Up @@ -581,25 +581,6 @@ def _add_endpoint_args(parser):
'server. This is only used with the "openai" service-kind.',
)

endpoint_group.add_argument(
"-m",
"--model",
nargs="+",
default=[],
help=f"The name of the model(s) to benchmark.",
)
endpoint_group.add_argument(
"--model-selection-strategy",
type=str,
choices=utils.get_enum_names(ModelSelectionStrategy),
default="round_robin",
required=False,
help=f"When multiple model are specified, this is how a specific model "
"should be assigned to a prompt. round_robin means that ith prompt in the "
"list gets assigned to i mod len(models). random means that assignment is "
"uniformly random",
)

endpoint_group.add_argument(
"--service-kind",
type=str,
Expand Down

0 comments on commit c7b1642

Please sign in to comment.