Skip to content
Closed
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
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,11 @@
pytest.mark.gpu_1,
pytest.mark.model(VLLM_MM_MODEL),
pytest.mark.requested_vllm_kv_cache_bytes(1_719_075_000),
pytest.mark.profiled_vram_gib(18.7),
# Measured solo peak, which is what profiled_vram_gib means. The KV cap
# above pins the footprint, so this matches test_vllm_mm_router_e2e.py --
# same model, same cap, same 7.6 GiB. The previous 18.7 exceeded the
# multi-process budget, which made every test in this file exclusive.
pytest.mark.profiled_vram_gib(7.6),
]


Expand Down
6 changes: 5 additions & 1 deletion tests/mm_router/test_router_rust_mm_router_e2e.py
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,11 @@
pytest.mark.gpu_1,
pytest.mark.model(VLLM_MM_MODEL),
pytest.mark.requested_vllm_kv_cache_bytes(1_719_075_000),
pytest.mark.profiled_vram_gib(18.7),
# Measured solo peak, which is what profiled_vram_gib means. The KV cap
# above pins the footprint, so this matches test_vllm_mm_router_e2e.py --
# same model, same cap, same 7.6 GiB. The previous 18.7 exceeded the
# multi-process budget, which made every test in this file exclusive.
pytest.mark.profiled_vram_gib(7.6),
]


Expand Down
Loading