Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions atom/model_engine/model_runner.py
Original file line number Diff line number Diff line change
Expand Up @@ -2311,9 +2311,9 @@ def capture_cudagraph(self):
context.positions = mrope_positions
num_pad, num_tokens_across_dp = self.get_dp_padding(num_tokens)
num_tokens += num_pad
# Create ubatch slices for TBO capture (need >= 2 requests)
# Create ubatch slices for TBO capture (need > 2 requests)
ubatch_slices = None
if is_tbo and self.config.enable_tbo_decode and bs >= 2:
if is_tbo and self.config.enable_tbo_decode and bs > 2:
ubatch_slices = maybe_create_ubatch_slices(
Comment on lines +2314 to 2317
num_reqs=bs,
num_tokens=num_tokens,
Expand Down
Loading
Loading