-
Notifications
You must be signed in to change notification settings - Fork 1.8k
[https://nvbugs/5474169][fix]Adjust max seq len for kvcache for memory estimation #7391
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
[https://nvbugs/5474169][fix]Adjust max seq len for kvcache for memory estimation #7391
Conversation
kv cache manager Signed-off-by: Hui Gao <[email protected]>
📝 WalkthroughWalkthroughLazy-init dummy requests in KvCacheCreator, store provided net_max_seq_len, and sync max_seq_len from the created KV cache manager back into KvCacheCreator and executor_config when applicable. Update a resource manager warning to show computed max_tokens and GPU free/total memory values. Changes
Sequence Diagram(s)sequenceDiagram
autonumber
actor Caller
participant K as KvCacheCreator
participant M as KVCacheManager
participant E as ExecutorConfig
Caller->>K: _get_token_num_for_estimation()
alt _dummy_reqs is None
K->>K: create _dummy_reqs using (self._max_seq_len - 1)
end
K-->>Caller: return token estimate
Caller->>K: _create_kv_cache_manager()
K->>M: construct manager (may update manager.max_seq_len)
M-->>K: return manager
note right of M: SWA or internal logic may adjust max_seq_len
alt manager is active
K->>E: set E.max_seq_len = M.max_seq_len
end
K->>K: set self._max_seq_len = M.max_seq_len (if manager not None)
Estimated code review effort🎯 3 (Moderate) | ⏱️ ~20 minutes Possibly related PRs
Suggested reviewers
📜 Recent review detailsConfiguration used: Path: .coderabbit.yaml Review profile: CHILL Plan: Pro 💡 Knowledge Base configuration:
You can enable these sources in your CodeRabbit configuration. 📒 Files selected for processing (1)
🚧 Files skipped from review as they are similar to previous changes (1)
⏰ Context from checks skipped due to timeout of 90000ms. You can increase the timeout in your CodeRabbit configuration to a maximum of 15 minutes (900000ms). (1)
✨ Finishing Touches
🧪 Generate unit tests
Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out. 🪧 TipsChatThere are 3 ways to chat with CodeRabbit:
SupportNeed help? Create a ticket on our support page for assistance with any issues or questions. CodeRabbit Commands (Invoked using PR/Issue comments)Type Other keywords and placeholders
Status, Documentation and Community
|
|
/bot run |
|
PR_Github #17059 [ run ] triggered by Bot |
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.
Actionable comments posted: 2
Caution
Some comments are outside the diff and can’t be posted inline due to platform limitations.
⚠️ Outside diff range comments (1)
tensorrt_llm/_torch/pyexecutor/_util.py (1)
163-171: Fix double-counting of draft/spec tokens in estimation.
spec_cfg.max_draft_lenis added twice when overlap scheduler is enabled, inflating KV token estimation.- num_extra_tokens_per_seq = num_extra_tokens_per_seq + 1 - if spec_cfg is not None: - num_extra_tokens_per_seq += spec_cfg.max_draft_len + num_extra_tokens_per_seq += 1 + # account for scheduler overlap; draft tokens added once below ... - if spec_cfg is not None: - num_extra_tokens_per_seq += spec_cfg.max_draft_len - num_extra_tokens_per_seq += get_num_extra_kv_tokens(spec_cfg) + if spec_cfg is not None: + # add draft tokens once; add any extra KV tokens once + num_extra_tokens_per_seq += spec_cfg.max_draft_len + num_extra_tokens_per_seq += get_num_extra_kv_tokens(spec_cfg)
🧹 Nitpick comments (4)
tensorrt_llm/_torch/pyexecutor/_util.py (2)
1-1: Add missing NVIDIA copyright header (2025).Per repo guidelines, prepend the standard NVIDIA header to all source files.
+# Copyright (c) 2025, NVIDIA CORPORATION. All rights reserved.
10-13: Deduplicate imports (prefer one canonical path).
ModelConfigandPyTorchConfigare imported twice via absolute and relative paths. Keep one (prefer absolute) to avoid confusion and shadowing.-from ..model_config import ModelConfig -from ..speculative import get_num_extra_kv_tokens, get_spec_decoder -from .config import PyTorchConfig +from ..speculative import get_num_extra_kv_tokens, get_spec_decoderAlso applies to: 21-24
tensorrt_llm/_torch/pyexecutor/resource_manager.py (2)
1-1: Add missing NVIDIA copyright header (2025).Per repo guidelines, prepend the standard NVIDIA header to all source files.
+# Copyright (c) 2025, NVIDIA CORPORATION. All rights reserved.
488-489: Log memory in GiB (correct divisor and clearer message).
1 << 32is not GiB; use1 << 30(or 1024**3) and label units to avoid confusion.- logger.warning( - f'Both free_gpu_memory_fraction and max_tokens are set (to {free_mem_fraction} and {max_tokens} with free memory {free_mem / (1 << 32)} of total memory {total_mem / (1<<32)}, respectively). The smaller value will be used.' - ) + logger.warning( + f'Both free_gpu_memory_fraction and max_tokens are set (to {free_mem_fraction} and {max_tokens}, ' + f'with free memory {free_mem / (1 << 30):.2f} GiB of total memory {total_mem / (1 << 30):.2f} GiB). ' + 'The smaller value will be used.' + )
📜 Review details
Configuration used: Path: .coderabbit.yaml
Review profile: CHILL
Plan: Pro
💡 Knowledge Base configuration:
- MCP integration is disabled by default for public repositories
- Jira integration is disabled by default for public repositories
- Linear integration is disabled by default for public repositories
You can enable these sources in your CodeRabbit configuration.
📒 Files selected for processing (2)
tensorrt_llm/_torch/pyexecutor/_util.py(3 hunks)tensorrt_llm/_torch/pyexecutor/resource_manager.py(1 hunks)
🧰 Additional context used
📓 Path-based instructions (2)
**/*.{cpp,cc,cxx,cu,h,hpp,hh,hxx,cuh,py}
📄 CodeRabbit inference engine (CODING_GUIDELINES.md)
**/*.{cpp,cc,cxx,cu,h,hpp,hh,hxx,cuh,py}: Use spaces only; no tabs; indent with 4 spaces
Prepend NVIDIA copyright header (current year) to all source files (.cpp, .h, .cu, .py, etc.)
Files:
tensorrt_llm/_torch/pyexecutor/resource_manager.pytensorrt_llm/_torch/pyexecutor/_util.py
**/*.py
📄 CodeRabbit inference engine (CODING_GUIDELINES.md)
**/*.py: Python code must target Python 3.8+
Indent Python with 4 spaces; no tabs
Preserve module namespaces when importing: from package.subpackage import foo; then call foo.SomeClass() instead of importing the class directly
Python naming: files snake_case; classes PascalCase; functions/methods snake_case; locals snake_case (prefix k_ when starting with a number); globals UPPER_SNAKE_CASE with G_ prefix; constants UPPER_SNAKE_CASE
Avoid shadowing outer-scope variables; initialize all externally visible members in init
Prefer docstrings for interfaces used outside a file; limit comments to function-internal or file-local interfaces
Use Google-style docstrings for classes and functions; document attributes/variables inline so Sphinx can render them
Avoid reflection when simpler alternatives exist; prefer explicit parameters and return dicts over locals()/dynamic tricks
In try/except, catch the narrowest exceptions possible; keep try bodies minimal and use else for the main logic when doing duck-typing checks
Files:
tensorrt_llm/_torch/pyexecutor/resource_manager.pytensorrt_llm/_torch/pyexecutor/_util.py
🧠 Learnings (2)
📚 Learning: 2025-08-14T21:04:50.248Z
Learnt from: thorjohnsen
PR: NVIDIA/TensorRT-LLM#6910
File: cpp/tensorrt_llm/batch_manager/kvCacheManager.cpp:0-0
Timestamp: 2025-08-14T21:04:50.248Z
Learning: In KV cache onboarding logic during prefill in cpp/tensorrt_llm/batch_manager/kvCacheManager.cpp, when calculating which blocks fall within the attention window, use getTokensPerBlock() to advance token indices rather than block->getUniqueTokens().size(), because the calculation needs to consider the post-prefill state where blocks will be filled to capacity, not their current token count.
Applied to files:
tensorrt_llm/_torch/pyexecutor/resource_manager.py
📚 Learning: 2025-08-20T06:56:02.889Z
Learnt from: eopXD
PR: NVIDIA/TensorRT-LLM#6768
File: cpp/tensorrt_llm/batch_manager/kvCacheManager.cpp:577-579
Timestamp: 2025-08-20T06:56:02.889Z
Learning: In cpp/tensorrt_llm/batch_manager/kvCacheManager.cpp, maxSequenceLength is now enforced as a non-optional argument in the BlockManager constructor, so concerns about std::nullopt defaulting to 0 are not applicable. When windowSize > maxSequenceLength, a warning should be added instead of handling optional parameter cases.
Applied to files:
tensorrt_llm/_torch/pyexecutor/resource_manager.py
🧬 Code graph analysis (1)
tensorrt_llm/_torch/pyexecutor/_util.py (1)
tensorrt_llm/_torch/attention_backend/trtllm.py (2)
max_seq_len(561-571)max_seq_len(574-578)
⏰ Context from checks skipped due to timeout of 90000ms. You can increase the timeout in your CodeRabbit configuration to a maximum of 15 minutes (900000ms). (1)
- GitHub Check: Pre-commit Check
🔇 Additional comments (1)
tensorrt_llm/_torch/pyexecutor/_util.py (1)
53-55: LGTM: switch to lazy init and track net max_seq_len.Storing net_max_seq_len and deferring dummy request creation is a good direction for avoiding upfront allocations.
|
PR_Github #17059 [ run ] completed with state |
Signed-off-by: Hui Gao <[email protected]>
|
/bot reuse-pipeline |
|
PR_Github #17165 [ reuse-pipeline ] triggered by Bot |
|
PR_Github #17165 [ reuse-pipeline ] completed with state |
…y estimation (NVIDIA#7391) Signed-off-by: Hui Gao <[email protected]>
…y estimation (NVIDIA#7391) Signed-off-by: Hui Gao <[email protected]> Signed-off-by: Wangshanshan <[email protected]>
…y estimation (NVIDIA#7391) Signed-off-by: Hui Gao <[email protected]> Signed-off-by: Wangshanshan <[email protected]>
…y estimation (NVIDIA#7391) Signed-off-by: Hui Gao <[email protected]> Signed-off-by: Wangshanshan <[email protected]>
…y estimation (NVIDIA#7391) Signed-off-by: Hui Gao <[email protected]> Signed-off-by: Wangshanshan <[email protected]>
…y estimation (NVIDIA#7391) Signed-off-by: Hui Gao <[email protected]> Signed-off-by: Wangshanshan <[email protected]>
…y estimation (NVIDIA#7391) Signed-off-by: Hui Gao <[email protected]> Signed-off-by: Wangshanshan <[email protected]>
…y estimation (NVIDIA#7391) Signed-off-by: Hui Gao <[email protected]> Signed-off-by: Wangshanshan <[email protected]>
…y estimation (NVIDIA#7391) Signed-off-by: Hui Gao <[email protected]> Signed-off-by: Wangshanshan <[email protected]>
…y estimation (NVIDIA#7391) Signed-off-by: Hui Gao <[email protected]> Signed-off-by: Wangshanshan <[email protected]>
…y estimation (NVIDIA#7391) Signed-off-by: Hui Gao <[email protected]> Signed-off-by: Wangshanshan <[email protected]>
…y estimation (NVIDIA#7391) Signed-off-by: Hui Gao <[email protected]> Signed-off-by: Wangshanshan <[email protected]>
…y estimation (NVIDIA#7391) Signed-off-by: Hui Gao <[email protected]> Signed-off-by: Wangshanshan <[email protected]>
…y estimation (NVIDIA#7391) Signed-off-by: Hui Gao <[email protected]> Signed-off-by: Wangshanshan <[email protected]>
…y estimation (NVIDIA#7391) Signed-off-by: Hui Gao <[email protected]> Signed-off-by: Wangshanshan <[email protected]>
…y estimation (NVIDIA#7391) Signed-off-by: Hui Gao <[email protected]> Signed-off-by: Wangshanshan <[email protected]>
…y estimation (NVIDIA#7391) Signed-off-by: Hui Gao <[email protected]> Signed-off-by: Wangshanshan <[email protected]>
…y estimation (NVIDIA#7391) Signed-off-by: Hui Gao <[email protected]> Signed-off-by: Wangshanshan <[email protected]>
…y estimation (NVIDIA#7391) Signed-off-by: Hui Gao <[email protected]> Signed-off-by: Wangshanshan <[email protected]>
…y estimation (NVIDIA#7391) Signed-off-by: Hui Gao <[email protected]> Signed-off-by: Wangshanshan <[email protected]>
…y estimation (NVIDIA#7391) Signed-off-by: Hui Gao <[email protected]> Signed-off-by: Wangshanshan <[email protected]>
…y estimation (NVIDIA#7391) Signed-off-by: Hui Gao <[email protected]> Signed-off-by: Wangshanshan <[email protected]>
…y estimation (NVIDIA#7391) Signed-off-by: Hui Gao <[email protected]> Signed-off-by: Wangshanshan <[email protected]>
…y estimation (NVIDIA#7391) Signed-off-by: Hui Gao <[email protected]> Signed-off-by: Wangshanshan <[email protected]>
…y estimation (NVIDIA#7391) Signed-off-by: Hui Gao <[email protected]> Signed-off-by: Wangshanshan <[email protected]>
…y estimation (NVIDIA#7391) Signed-off-by: Hui Gao <[email protected]> Signed-off-by: Wangshanshan <[email protected]>
…y estimation (NVIDIA#7391) Signed-off-by: Hui Gao <[email protected]> Signed-off-by: Wangshanshan <[email protected]>
…y estimation (NVIDIA#7391) Signed-off-by: Hui Gao <[email protected]> Signed-off-by: Wangshanshan <[email protected]>
…y estimation (NVIDIA#7391) Signed-off-by: Hui Gao <[email protected]>
…y estimation (NVIDIA#7391) Signed-off-by: Hui Gao <[email protected]> Signed-off-by: Wangshanshan <[email protected]>
…y estimation (NVIDIA#7391) Signed-off-by: Hui Gao <[email protected]> Signed-off-by: Wangshanshan <[email protected]>
…y estimation (NVIDIA#7391) Signed-off-by: Hui Gao <[email protected]>
…y estimation (NVIDIA#7391) Signed-off-by: Hui Gao <[email protected]> Signed-off-by: Wangshanshan <[email protected]>
…y estimation (NVIDIA#7391) Signed-off-by: Hui Gao <[email protected]> Signed-off-by: Wangshanshan <[email protected]>
…y estimation (NVIDIA#7391) Signed-off-by: Hui Gao <[email protected]>
…y estimation (#7391) Signed-off-by: Hui Gao <[email protected]> Signed-off-by: Wangshanshan <[email protected]>
…y estimation (NVIDIA#7391) Signed-off-by: Hui Gao <[email protected]> Signed-off-by: Wangshanshan <[email protected]>
…y estimation (NVIDIA#7391) Signed-off-by: Hui Gao <[email protected]> Signed-off-by: Wangshanshan <[email protected]>
kv cache manager
Summary by CodeRabbit
Bug Fixes
Chores
Description
Test Coverage
PR Checklist
Please review the following before submitting your PR:
PR description clearly explains what and why. If using CodeRabbit's summary, please make sure it makes sense.
PR Follows TRT-LLM CODING GUIDELINES to the best of your knowledge.
Test cases are provided for new code paths (see test instructions)
Any new dependencies have been scanned for license and vulnerabilities
CODEOWNERS updated if ownership changes
Documentation updated as needed
The reviewers assigned automatically/manually are appropriate for the PR.
Please check this after reviewing the above items as appropriate for this PR.
GitHub Bot Help
/bot [-h] ['run', 'kill', 'skip', 'reuse-pipeline'] ...Provide a user friendly way for developers to interact with a Jenkins server.
Run
/bot [-h|--help]to print this help message.See details below for each supported subcommand.
run [--reuse-test (optional)pipeline-id --disable-fail-fast --skip-test --stage-list "A10-PyTorch-1, xxx" --gpu-type "A30, H100_PCIe" --test-backend "pytorch, cpp" --add-multi-gpu-test --only-multi-gpu-test --disable-multi-gpu-test --post-merge --extra-stage "H100_PCIe-TensorRT-Post-Merge-1, xxx" --detailed-log --debug(experimental)]Launch build/test pipelines. All previously running jobs will be killed.
--reuse-test (optional)pipeline-id(OPTIONAL) : Allow the new pipeline to reuse build artifacts and skip successful test stages from a specified pipeline or the last pipeline if no pipeline-id is indicated. If the Git commit ID has changed, this option will be always ignored. The DEFAULT behavior of the bot is to reuse build artifacts and successful test results from the last pipeline.--disable-reuse-test(OPTIONAL) : Explicitly prevent the pipeline from reusing build artifacts and skipping successful test stages from a previous pipeline. Ensure that all builds and tests are run regardless of previous successes.--disable-fail-fast(OPTIONAL) : Disable fail fast on build/tests/infra failures.--skip-test(OPTIONAL) : Skip all test stages, but still run build stages, package stages and sanity check stages. Note: Does NOT update GitHub check status.--stage-list "A10-PyTorch-1, xxx"(OPTIONAL) : Only run the specified test stages. Examples: "A10-PyTorch-1, xxx". Note: Does NOT update GitHub check status.--gpu-type "A30, H100_PCIe"(OPTIONAL) : Only run the test stages on the specified GPU types. Examples: "A30, H100_PCIe". Note: Does NOT update GitHub check status.--test-backend "pytorch, cpp"(OPTIONAL) : Skip test stages which don't match the specified backends. Only support [pytorch, cpp, tensorrt, triton]. Examples: "pytorch, cpp" (does not run test stages with tensorrt or triton backend). Note: Does NOT update GitHub pipeline status.--only-multi-gpu-test(OPTIONAL) : Only run the multi-GPU tests. Note: Does NOT update GitHub check status.--disable-multi-gpu-test(OPTIONAL) : Disable the multi-GPU tests. Note: Does NOT update GitHub check status.--add-multi-gpu-test(OPTIONAL) : Force run the multi-GPU tests in addition to running L0 pre-merge pipeline.--post-merge(OPTIONAL) : Run the L0 post-merge pipeline instead of the ordinary L0 pre-merge pipeline.--extra-stage "H100_PCIe-TensorRT-Post-Merge-1, xxx"(OPTIONAL) : Run the ordinary L0 pre-merge pipeline and specified test stages. Examples: --extra-stage "H100_PCIe-TensorRT-Post-Merge-1, xxx".--detailed-log(OPTIONAL) : Enable flushing out all logs to the Jenkins console. This will significantly increase the log volume and may slow down the job.--debug(OPTIONAL) : Experimental feature. Enable access to the CI container for debugging purpose. Note: Specify exactly one stage in thestage-listparameter to access the appropriate container environment. Note: Does NOT update GitHub check status.For guidance on mapping tests to stage names, see
docs/source/reference/ci-overview.mdand the
scripts/test_to_stage_mapping.pyhelper.kill
killKill all running builds associated with pull request.
skip
skip --comment COMMENTSkip testing for latest commit on pull request.
--comment "Reason for skipping build/test"is required. IMPORTANT NOTE: This is dangerous since lack of user care and validation can cause top of tree to break.reuse-pipeline
reuse-pipelineReuse a previous pipeline to validate current commit. This action will also kill all currently running builds associated with the pull request. IMPORTANT NOTE: This is dangerous since lack of user care and validation can cause top of tree to break.