File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
tensorrt_llm/_torch/pyexecutor Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -643,7 +643,7 @@ def _executor_loop_pp(self):
643
643
with self ._profiler () as profile_step :
644
644
iter_start_time = time .time ()
645
645
iter_stats = None
646
- while not self . should_stop_processing :
646
+ while True :
647
647
profile_step ()
648
648
if self .enable_iter_perf_stats :
649
649
iter_start_time = time .time ()
@@ -801,7 +801,7 @@ def _executor_loop(self):
801
801
sample_state = None
802
802
iter_start_time = time .time ()
803
803
iter_stats = None
804
- while not self . should_stop_processing :
804
+ while True :
805
805
profile_step ()
806
806
if self .enable_iter_perf_stats :
807
807
iter_start_time = time .time ()
@@ -945,7 +945,7 @@ def _executor_loop_overlap(self):
945
945
with self ._profiler () as profile_step :
946
946
iter_start_time = time .time ()
947
947
iter_stats = None
948
- while not self . should_stop_processing :
948
+ while True :
949
949
profile_step ()
950
950
if self .enable_iter_perf_stats :
951
951
iter_start_time = time .time ()
You can’t perform that action at this time.
0 commit comments