Skip to content
Merged
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
2 changes: 1 addition & 1 deletion tests/v1/tpu/test_sampler.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ def test_sampler_different(model_name: str):
enforce_eager=False,
max_num_seqs=1,
max_model_len=512,
max_num_batched_tokens=512)
max_num_batched_tokens=256)
prompts = [
"Write a short story about a robot that dreams for the first time."
]
Expand Down
2 changes: 1 addition & 1 deletion vllm/v1/attention/backends/pallas.py
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ class PallasMetadata:
block_tables: torch.Tensor
context_lens: torch.Tensor
query_start_loc: torch.Tensor
num_seqs: int
num_seqs: torch.Tensor


class PallasAttentionBackendImpl(AttentionImpl):
Expand Down