-
-
Notifications
You must be signed in to change notification settings - Fork 11.6k
[V1][Minor] Print KV cache size in token counts #13596
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -519,11 +519,13 @@ def _get_kv_cache_config_uniform_type(vllm_config: VllmConfig, | |
| "num_gpu_blocks_override=%d", num_blocks, num_gpu_blocks_override) | ||
| num_blocks = num_gpu_blocks_override | ||
|
|
||
| logger.info("# GPU blocks: %d", num_blocks) | ||
| max_concurrency = (num_blocks * vllm_config.cache_config.block_size / | ||
| vllm_config.model_config.max_model_len) | ||
| num_tokens = num_blocks * vllm_config.cache_config.block_size | ||
| num_tokens_str = f"{num_tokens:,}" | ||
| logger.info("GPU KV cache size: %s tokens", num_tokens_str) | ||
| max_model_len_str = f"{vllm_config.model_config.max_model_len:,}" | ||
| max_concurrency = num_tokens / vllm_config.model_config.max_model_len | ||
| logger.info("Maximum concurrency for %s tokens per request: %.2fx", | ||
|
Comment on lines
+524
to
527
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. We could consider putting these lines together in one log
Collaborator
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I'd personally prefer them on separate lines because the first line is more important and needs to be checked every time, while the second line is less critical. |
||
| vllm_config.model_config.max_model_len, max_concurrency) | ||
| max_model_len_str, max_concurrency) | ||
|
|
||
| per_layer_size = page_size * num_blocks | ||
|
|
||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This may not be accurate with hybrid of cache.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Ah yes, but I think
num_blocksis already inaccurate? We should reconsider this for hybrid memory models.