Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

[None][fix] Add Lock to protect mReqeustToSession#8085

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 ourterms of service andprivacy statement. We’ll occasionally send you account related emails.

Already on GitHub?Sign in to your account

Merged
kaiyux merged 3 commits intoNVIDIA:mainfromchuangz0:add_lock_for_request_to_session
Oct 10, 2025

Conversation

@chuangz0
Copy link
Collaborator

@chuangz0chuangz0 commentedSep 30, 2025
edited
Loading

Summary by CodeRabbit

  • Bug Fixes
    • Improved thread-safety in request-to-session tracking to prevent race conditions under concurrent workloads.
    • Resolves rare inconsistencies in connection counts that could lead to unstable behavior during batch processing.
    • Enhances overall stability and reliability when handling multiple simultaneous requests, reducing the risk of intermittent errors.

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 FollowsTRT-LLM CODING GUIDELINES to the best of your knowledge.

  • Test cases are provided for new code paths (seetest 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: DoesNOT update GitHub check status.

--stage-list "A10-PyTorch-1, xxx"(OPTIONAL) : Only run the specified test stages. Examples: "A10-PyTorch-1, xxx". Note: DoesNOT 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: DoesNOT 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: DoesNOT update GitHub pipeline status.

--only-multi-gpu-test(OPTIONAL) : Only run the multi-GPU tests. Note: DoesNOT update GitHub check status.

--disable-multi-gpu-test(OPTIONAL) : Disable the multi-GPU tests. Note: DoesNOT 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-list parameter to access the appropriate container environment. Note: DoesNOT update GitHub check status.

For guidance on mapping tests to stage names, seedocs/source/reference/ci-overview.md
and thescripts/test_to_stage_mapping.py helper.

kill

kill

Kill all running builds associated with pull request.

skip

skip --comment COMMENT

Skip 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-pipeline

Reuse 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.

Signed-off-by: Chuang Zhu <111838961+chuangz0@users.noreply.github.com>
@coderabbitai
Copy link
Contributor

coderabbitaibot commentedSep 30, 2025
edited
Loading

📝 Walkthrough

Walkthrough

Changed Impl::getCounterpartsCount from const to non-const and added mutex locking around access to mRequestToSession to ensure thread-safe retrieval of counterpart counts.

Changes

Cohort / File(s)Summary
Thread-safety update (method signature + locking)
cpp/tensorrt_llm/batch_manager/dataTransceiver.cpp
Impl::getCounterpartsCount is no longer const; acquires mMtxForMap lock before reading mRequestToSession and returns connection count for requestId.

Estimated code review effort

🎯 2 (Simple) | ⏱️ ~10 minutes

Pre-merge checks and finishing touches

❌ Failed checks (2 warnings)
Check nameStatusExplanationResolution
Docstring Coverage⚠️ WarningDocstring coverage is 0.00% which is insufficient. The required threshold is 80.00%.You can run@coderabbitai generate docstrings to improve docstring coverage.
Description Check⚠️ WarningThe pull request description only contains the unedited template headings and comments without any filled-in title, description, or test coverage details, leaving all required sections empty and lacking the rationale and context for the change.Please add a proper PR title following the template, fill in the Description section with the issue being addressed and the solution, list relevant tests under Test Coverage, and complete the PR Checklist items before merging.
✅ Passed checks (1 passed)
Check nameStatusExplanation
Title Check✅ PassedThe pull request title follows the repository’s required “[ticket][type] Summary” format and clearly states the primary change—adding a lock to protect the request‐to‐session map—making it concise, focused, and directly relevant to the change in dataTransceiver.cpp.
✨ Finishing touches
  • 📝 Generate Docstrings
🧪 Generate unit tests
  • Create PR with unit tests
  • Post copyable unit tests in a comment

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.

❤️ Share
🧪 Early access (Sonnet 4.5): enabled

We are currently testing theSonnet 4.5 model, which is expected to improve code review quality. However, this model may lead to increased noise levels in the review comments. Please disable the early access features if the noise level causes any inconvenience.

Note:

  • Public repositories are always opted into early access features.
  • You can enable or disable early access features from the CodeRabbit UI or by updating the CodeRabbit configuration file.

Comment@coderabbitai help to get the list of available commands and usage tips.

Copy link
Contributor

@coderabbitaicoderabbitaibot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others.Learn more.

Actionable comments posted: 0

🧹 Nitpick comments (1)
cpp/tensorrt_llm/batch_manager/dataTransceiver.cpp (1)

296-296:Consider using consistent variable naming.

Other methods in this class uselk for the lock variable name (lines 304, 355, 374), while this method useslock. Consider renaming for consistency.

-        std::unique_lock<std::mutex> lock(mMtxForMap);+        std::unique_lock<std::mutex> lk(mMtxForMap);
📜 Review details

Configuration used: Path: .coderabbit.yaml

Review profile: CHILL

Plan: Pro

📥 Commits

Reviewing files that changed from the base of the PR and betweendcfd3ef andcda8053.

📒 Files selected for processing (1)
  • cpp/tensorrt_llm/batch_manager/dataTransceiver.cpp (1 hunks)
🧰 Additional context used
📓 Path-based instructions (5)
**/*.{h,hpp,hh,hxx,cpp,cxx,cc,cu,cuh}

📄 CodeRabbit inference engine (CODING_GUIDELINES.md)

**/*.{h,hpp,hh,hxx,cpp,cxx,cc,cu,cuh}: Namespace closing braces must include a trailing comment with the namespace name (e.g., '} // namespace foo').
Prefer const or constexpr variables over #define for constants.
Declare variables that are not modified after initialization as const.
Avoid magic literals in code; except for 0, nullptr, true, false. Use named constants for comparisons and logic.
Use Allman brace style for formatting.
Place the semicolon of an empty for/while loop on a new line.
Bodies of switch/while/do-while/for must be compound statements (brace-delimited), and if/else must always be followed by brace-delimited statements.
Type names (e.g., classes) must be CamelCase starting with an uppercase letter (e.g., FooBar).
Local variables, methods, and namespaces use lowerCamelCase (e.g., localFooBar).
Non-magic-number global variables that are non-static and not in an anonymous namespace must be lowerCamelCase prefixed with 'g' (e.g., gDontUseGlobalFoos).
Non-magic-number globals that are static or in an anonymous namespace use lowerCamelCase prefixed with 's' (e.g., sMutableStaticGlobal).
Locally visible static variables use lowerCamelCase with 's' prefix (e.g., static std::once_flag sFlag).
Private/protected member variables use 'm' prefix with CamelCase (e.g., mNbFooValues). Public members may omit, but 'm' is encouraged for clarity.
Constants (enums, global constants, static constants, and function-scope magic/literal constants) use uppercase SNAKE_CASE with 'k' prefix (e.g., kDIGIT_NUM).
Function-scope constants that are not magic numbers or literals are named like non-constant variables (e.g., bool const pass = a && b).
If macros are necessary, name them in UPPER_SNAKE_CASE (e.g., FOO_VERSION) and prefer constants over #define.
Use LLVM clang-format; wrap lines at a maximum of 120 columns; use '// clang-format off/on' sparingly with justification.
Use smart pointers for heap allocations; prefer unique_ptr for sole ownership, shared_ptr for shared...

Files:

  • cpp/tensorrt_llm/batch_manager/dataTransceiver.cpp
**/*.{cpp,cxx,cc,cu,h,hpp,hh,hxx,cuh}

📄 CodeRabbit inference engine (CODING_GUIDELINES.md)

C++ filenames should be lowerCamelCase (first letter lowercase) and must be case-insensitive unique within a compilation target.

Files:

  • cpp/tensorrt_llm/batch_manager/dataTransceiver.cpp
**/*.{h,hpp,hh,hxx,cpp,cxx,cc,cu,cuh,py}

📄 CodeRabbit inference engine (CODING_GUIDELINES.md)

Use only spaces, no tabs; indent with 4 spaces.

Files:

  • cpp/tensorrt_llm/batch_manager/dataTransceiver.cpp
**/*.{h,hpp,hh,hxx,cpp,cxx,cc}

📄 CodeRabbit inference engine (CODING_GUIDELINES.md)

**/*.{h,hpp,hh,hxx,cpp,cxx,cc}: Prefer anonymous namespaces over 'static' for internal linkage of functions.
All templates (class/function/member/static) must be instantiated at least once; non-POD classes should have private data members.

Files:

  • cpp/tensorrt_llm/batch_manager/dataTransceiver.cpp
**/*.{cpp,cxx,cc,h,hpp,hh,hxx,cu,cuh,py}

📄 CodeRabbit inference engine (CODING_GUIDELINES.md)

Prepend the NVIDIA Apache-2.0 copyright header with current year to the top of all source files (e.g., .cpp, .h, .cu, .py).

Files:

  • cpp/tensorrt_llm/batch_manager/dataTransceiver.cpp
🧠 Learnings (1)
📚 Learning: 2025-08-06T08:18:28.669Z
Learnt from: zhengd-nvPR: NVIDIA/TensorRT-LLM#6633File: cpp/tensorrt_llm/batch_manager/dataTransceiverImpl.cpp:145-155Timestamp: 2025-08-06T08:18:28.669ZLearning: In cpp/tensorrt_llm/batch_manager/dataTransceiverImpl.cpp, the existing `mMtxForMap` mutex in DataSenderImpl is sufficient to synchronize measurement file operations in the `release` method, as all file operations occur within the same critical section that protects the `mRequestToSession` map access.

Applied to files:

  • cpp/tensorrt_llm/batch_manager/dataTransceiver.cpp
🧬 Code graph analysis (1)
cpp/tensorrt_llm/batch_manager/dataTransceiver.cpp (2)
cpp/tensorrt_llm/batch_manager/dataTransceiver.h (2)
  • nodiscard (88-113)
  • nodiscard (171-289)
cpp/include/tensorrt_llm/batch_manager/llmRequest.h (8)
  • nodiscard (554-557)
  • nodiscard (562-565)
  • nodiscard (585-588)
  • nodiscard (772-780)
  • nodiscard (783-786)
  • nodiscard (789-792)
  • nodiscard (1028-1031)
  • nodiscard (1193-1201)
🔇 Additional comments (1)
cpp/tensorrt_llm/batch_manager/dataTransceiver.cpp (1)

294-300:LGTM! Thread-safety improvement.

The addition ofmMtxForMap lock correctly protects concurrent access tomRequestToSession. The signature change fromconst to non-const is appropriate since acquiring a lock modifies the mutex state. This follows the same synchronization pattern used inrelease,recvRequestInfo, andsendSync methods.

Based on learnings

@chuangz0
Copy link
CollaboratorAuthor

/bot run

@tensorrt-cicd
Copy link
Collaborator

PR_Github #20324 [ run ] triggered by Bot

@tensorrt-cicd
Copy link
Collaborator

PR_Github #20324 [ run ] completed with stateSUCCESS
/LLM/main/L0_MergeRequest_PR pipeline #15329 completed with status: 'FAILURE'

@qiaoxj07
Copy link
Collaborator

/bot run --disable-fail-fast

@tensorrt-cicd
Copy link
Collaborator

PR_Github #20857 [ run ] triggered by Bot

@tensorrt-cicd
Copy link
Collaborator

PR_Github #20857 [ run ] completed with stateSUCCESS
/LLM/main/L0_MergeRequest_PR pipeline #15774 completed with status: 'FAILURE'

@qiaoxj07
Copy link
Collaborator

/bot run --disable-fail-fast

@tensorrt-cicd
Copy link
Collaborator

PR_Github #20904 [ run ] triggered by Bot

@tensorrt-cicd
Copy link
Collaborator

PR_Github #20904 [ run ] completed with stateSUCCESS
/LLM/main/L0_MergeRequest_PR pipeline #15815 completed with status: 'FAILURE'

@qiaoxj07
Copy link
Collaborator

/bot run --disable-fail-fast

@tensorrt-cicd
Copy link
Collaborator

PR_Github #20938 [ run ] triggered by Bot

@tensorrt-cicd
Copy link
Collaborator

PR_Github #20938 [ run ] completed with stateSUCCESS
/LLM/main/L0_MergeRequest_PR pipeline #15840 completed with status: 'FAILURE'

@kaiyux
Copy link
Member

/bot run --disable-fail-fast

@tensorrt-cicd
Copy link
Collaborator

PR_Github #21010 [ run ] triggered by Bot

@tensorrt-cicd
Copy link
Collaborator

PR_Github #21010 [ run ] completed with stateSUCCESS
/LLM/main/L0_MergeRequest_PR pipeline #15885 completed with status: 'SUCCESS'

@kaiyuxkaiyux merged commit85f157f intoNVIDIA:mainOct 10, 2025
5 checks passed
yufeiwu-nv pushed a commit to yufeiwu-nv/TensorRT-LLM that referenced this pull requestOct 24, 2025
Signed-off-by: Chuang Zhu <111838961+chuangz0@users.noreply.github.com>Co-authored-by: Xianjie Qiao <5410381+qiaoxj07@users.noreply.github.com>Signed-off-by: yufeiwu-nv <230315618+yufeiwu-nv@users.noreply.github.com>
Sign up for freeto join this conversation on GitHub. Already have an account?Sign in to comment

Reviewers

@coderabbitaicoderabbitai[bot]coderabbitai[bot] left review comments

@qiaoxj07qiaoxj07qiaoxj07 approved these changes

@TabrizianTabrizianTabrizian approved these changes

@Shixiaowei02Shixiaowei02Awaiting requested review from Shixiaowei02

@schetlur-nvschetlur-nvAwaiting requested review from schetlur-nvschetlur-nv is a code owner automatically assigned from NVIDIA/trt-llm-disagg-devs

Assignees

No one assigned

Labels

None yet

Projects

None yet

Milestone

No milestone

Development

Successfully merging this pull request may close these issues.

5 participants

@chuangz0@tensorrt-cicd@qiaoxj07@kaiyux@Tabrizian

[8]ページ先頭

©2009-2025 Movatter.jp