Closed yinglin-nv closed 3 months ago
With the change in this recently merged PR, batch_input_ids_list is now required by the _fill_output() function in ModelCppRunner. In this PR, we updated serve_trt.py accordingly by passing batch_input_ids_list to runner._fill_output() in _stream().
batch_input_ids_list
_fill_output()
serve_trt.py
runner._fill_output()
_stream()
Thanks @yinglin-nv! I ported this to #87 along with some other changes related to upgrade, so let's close this one.
With the change in this recently merged PR,
batch_input_ids_list
is now required by the_fill_output()
function in ModelCppRunner. In this PR, we updatedserve_trt.py
accordingly by passingbatch_input_ids_list
torunner._fill_output()
in_stream()
.