[TRTLLM-12173][tests] Add E2E accuracy test for nano v3 omni#13616
Conversation
|
/bot help |
GitHub Bot Help
Provide a user friendly way for developers to interact with a Jenkins server. Run See details below for each supported subcommand. Details
Launch build/test pipelines. All previously running jobs will be killed.
kill
Kill all running builds associated with pull request. skip
Skip testing for latest commit on pull request. 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. |
|
/bot run |
📝 WalkthroughWalkthroughExtends multimodal LLM evaluation by modifying Changes
Estimated code review effort🎯 3 (Moderate) | ⏱️ ~20 minutes 🚥 Pre-merge checks | ✅ 3 | ❌ 2❌ Failed checks (1 warning, 1 inconclusive)
✅ Passed checks (3 passed)
✏️ Tip: You can configure your own custom pre-merge checks in the settings. ✨ Finishing Touches🧪 Generate unit tests (beta)
Review rate limit: 9/10 reviews remaining, refill in 6 minutes. Comment |
There was a problem hiding this comment.
Actionable comments posted: 3
🤖 Prompt for all review comments with AI agents
Verify each finding against the current code and only fix it if needed.
Inline comments:
In `@tests/integration/defs/accuracy/references/mmmu.yaml`:
- Line 25: Remove the unresolved merge-time question comment "# Can this be
removed?" from the canonical reference data and either delete the comment
entirely or replace it with a clear, actionable placeholder linking to a tracked
issue (e.g., "TODO: remove after ISSUE-1234 - <issue URL>") so the file contains
no ambiguity; update the corresponding reference entry so it remains valid and
commit the change.
In `@tests/integration/defs/accuracy/test_llm_api_pytorch_multimodal.py`:
- Line 444: The placeholder comment "# Note: these need to be changed to refer
to the models on scratch before merging." is an outstanding pre-merge TODO and
must be resolved: either replace the comment with the actual scratch model
identifiers used in this test (update the model name strings referenced in the
test setup/fixtures so tests point to the correct models) or remove the note and
add a concise tracked-issue reference (e.g., "TODO: track in ISSUE-xxx") if the
change will be done later; locate the placeholder comment in
tests/integration/defs/accuracy/test_llm_api_pytorch_multimodal.py and update
the surrounding test fixture/model variables (the test's model name constants)
accordingly so no pre-merge action item remains.
- Around line 445-480: MODEL_PARAMS is defined as a mutable list (and other
nearby mutable containers) which triggers RUF012; change those to immutable
containers by replacing the list with a tuple of pytest.param entries and
convert any mutable dict-like configs to immutable mappings (e.g.,
types.MappingProxyType or frozen dataclass/tuple) so tests cannot mutate shared
state; update the definition of MODEL_PARAMS and any related config holders
(referencing MODEL_PARAMS and KvCacheConfig usages) to use tuple/immutable
mapping equivalents and ensure all callers expecting sequence still work with a
tuple.
🪄 Autofix (Beta)
Fix all unresolved CodeRabbit comments on this PR:
- Push a commit to this branch (recommended)
- Create a new PR with the fixes
ℹ️ Review info
⚙️ Run configuration
Configuration used: Path: .coderabbit.yaml
Review profile: CHILL
Plan: Enterprise
Run ID: 8fe1b4d6-64f6-4142-8fb1-070f603fe3d9
📒 Files selected for processing (6)
tensorrt_llm/evaluate/lm_eval.pytests/integration/defs/accuracy/references/mmmu.yamltests/integration/defs/accuracy/test_llm_api_pytorch_multimodal.pytests/integration/test_lists/qa/llm_function_core.txttests/integration/test_lists/test-db/l0_b200.ymltests/integration/test_lists/test-db/l0_h100.yml
|
/bot kill |
|
PR_Github #46194 [ run ] triggered by Bot. Commit: |
|
PR_Github #46197 [ kill ] triggered by Bot. Commit: |
|
PR_Github #46194 [ run ] completed with state |
|
PR_Github #46197 [ kill ] completed with state |
|
/bot run |
|
PR_Github #46204 [ run ] triggered by Bot. Commit: |
|
PR_Github #46204 [ run ] completed with state
|
|
/bot run --disable-fail-fast |
|
PR_Github #46226 [ run ] triggered by Bot. Commit: |
|
@coderabbitai review the code as a QA engineer. |
This comment was marked as resolved.
This comment was marked as resolved.
This comment was marked as resolved.
This comment was marked as resolved.
|
PR_Github #46744 [ run ] completed with state
|
|
/bot run |
|
PR_Github #46833 [ run ] triggered by Bot. Commit: |
|
/bot help |
GitHub Bot Help
Provide a user friendly way for developers to interact with a Jenkins server. Run See details below for each supported subcommand. Details
Launch build/test pipelines. All previously running jobs will be killed.
kill
Kill all running builds associated with pull request. skip
Skip testing for latest commit on pull request. 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. |
|
/bot run --stage-list "Build-Docker-Images" |
|
PR_Github #46863 [ run ] triggered by Bot. Commit: |
|
/bot run --stage-list "Build-Docker-Images" |
|
PR_Github #46876 [ run ] triggered by Bot. Commit: |
|
/bot run --stage-list "Build-Docker-Images" |
|
PR_Github #46909 [ run ] triggered by Bot. Commit: |
|
PR_Github #46909 [ run ] completed with state
|
|
/bot run |
1 similar comment
|
/bot run |
|
PR_Github #47029 [ run ] triggered by Bot. Commit: |
|
PR_Github #47029 [ run ] completed with state
|
Signed-off-by: William Zhang <133824995+2ez4bz@users.noreply.github.com>
|
/bot run |
|
PR_Github #47046 [ run ] triggered by Bot. Commit: |
|
PR_Github #47046 [ run ] completed with state |
Description
As title states.
Test Coverage
Added new E2E MMMU accuracy test for BF16 / FP8 / NVFP4.
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
Update tava architecture diagram if there is a significant design change in PR.
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
To see a list of available CI bot commands, please comment
/bot help.Summary by CodeRabbit
New Features
Tests