Skip to content
Merged
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
2 changes: 1 addition & 1 deletion vllm/core/block_manager_v1.py
Original file line number Diff line number Diff line change
Expand Up @@ -443,7 +443,7 @@ def _allocate_last_physical_block(
# prefix tokens)
new_block = self.gpu_allocator.allocate(block_hash, num_hashed_tokens)

# If the block has is None, then the block is not full.
# If the block_hash is None, then the block is not full.
# If the block is not full, then we expect it to have a refcount of 1.
if block_hash is None:
assert new_block.ref_count == 1
Expand Down
Loading