Closed ankur1-samsung closed 1 month ago
current code : parser.add_argument( '--log-file', type=str, help='path to triton log gile', default='triton_log.txt', )
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', )
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.
https://github.com/triton-inference-server/tensorrtllm_backend/pull/628
Thanks for bringing this up. We've incorporated this change. It should be updated in the next weekly drop.
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.