Skip to content

Commit

Permalink
Change to direct string comparison
Browse files Browse the repository at this point in the history
  • Loading branch information
nv-hwoo committed Dec 1, 2023
1 parent 7205793 commit dc5114a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/c++/perf_analyzer/docs/examples/profile.py
Original file line number Diff line number Diff line change
Expand Up @@ -569,7 +569,7 @@ def construct_trtllm_input_data(args):
def main(args):
if args.backend == "trtllm":
input_data = construct_trtllm_input_data(args)
elif args.backend in "vllm":
elif args.backend == "vllm":
input_data = construct_vllm_input_data(args)
else:
raise ValueError(
Expand Down

0 comments on commit dc5114a

Please sign in to comment.