triton-inference-server / tensorrtllm_backend

The Triton TensorRT-LLM Backend
Apache License 2.0
711 stars 108 forks source link

tensorrtllm_backend/scripts /launch_triton_server.py parse_arguments () typo correction #627

Closed ankur1-samsung closed 1 month ago

ankur1-samsung commented 1 month ago

current code : parser.add_argument( '--log-file', type=str, help='path to triton log gile', default='triton_log.txt', )

to be -> parser.add_argument( '--log-file', type=str, help='path to triton log file', default='triton_log.txt', )

I would like to create a PR for this change.

ankur1-samsung commented 1 month ago

https://github.com/triton-inference-server/tensorrtllm_backend/pull/628

Tabrizian commented 1 month ago

Thanks for bringing this up. We've incorporated this change. It should be updated in the next weekly drop.