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
Original file line number Diff line number Diff line change
Expand Up @@ -351,8 +351,8 @@ def test_disaggregated_llama_context_capacity(model, enable_cuda_graph,
max_tokens = 25

requests = []
# Send 256 requests to make sure the context worker is saturated
for _ in range(256):
# Send 32 requests to make sure the context worker is saturated
for _ in range(32):
requests.append(
(prompt, SamplingParams(max_tokens=1, ignore_eos=True),
DisaggregatedParams(request_type="context_only")))
Expand Down
Loading