Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
OpenDAS
dynamo
Commits
0fa3d079
Unverified
Commit
0fa3d079
authored
Feb 05, 2026
by
Richard Huo
Committed by
GitHub
Feb 05, 2026
Browse files
test: [DYN-1988] skip TRTLLM KVBM disagg test for now until upstream's fix is released (#5974)
parent
8c8680b1
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
1 deletion
+5
-1
tests/kvbm_integration/common.py
tests/kvbm_integration/common.py
+1
-1
tests/kvbm_integration/test_determinism_disagg.py
tests/kvbm_integration/test_determinism_disagg.py
+4
-0
No files found.
tests/kvbm_integration/common.py
View file @
0fa3d079
...
...
@@ -336,7 +336,7 @@ class DeterminismTester(ApiTester):
top_k
=
-
1
if
check_module_available
(
"tensorrt_llm"
):
top_k
=
0
top_k
=
1
# TensorRT-LLM requires top_k>=0 and dynamo frontend does not support top_k=
0
# For determinism: use temperature=0 which should trigger greedy decoding in vLLM
# Setting top_p=1.0 and top_k=-1 to avoid any sampling/filtering
return
super
().
make_request
(
...
...
tests/kvbm_integration/test_determinism_disagg.py
View file @
0fa3d079
...
...
@@ -547,6 +547,10 @@ def tester(llm_server):
class
TestDeterminismDisagg
(
BaseTestDeterminism
):
"""Test class for determinism validation."""
@
pytest
.
mark
.
skipif
(
check_module_available
(
"tensorrt_llm"
),
reason
=
"Skipping test until the TRT-LLM disagg hang issue is fixed. (https://github.com/NVIDIA/TensorRT-LLM/pull/11247)"
,
)
@
pytest
.
mark
.
parametrize
(
"llm_server"
,
[
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment