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
da7d3e9e
Unverified
Commit
da7d3e9e
authored
Feb 20, 2026
by
knarangN
Committed by
GitHub
Feb 20, 2026
Browse files
test: add TensorRT-LLM multimodal EPD test for nightly CI (#6193)
Signed-off-by:
Kavita Narang
<
knarang@nvidia.com
>
parent
f91b42b9
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
22 additions
and
6 deletions
+22
-6
tests/serve/test_trtllm.py
tests/serve/test_trtllm.py
+22
-6
No files found.
tests/serve/test_trtllm.py
View file @
da7d3e9e
...
@@ -199,21 +199,37 @@ trtllm_configs = {
...
@@ -199,21 +199,37 @@ trtllm_configs = {
delayed_start
=
60
,
delayed_start
=
60
,
request_payloads
=
[
multimodal_payload_default
()],
request_payloads
=
[
multimodal_payload_default
()],
),
),
"epd_multimodal_image_and_embeddings"
:
TRTLLMConfig
(
# TensorRT-LLM EPD (Encode-Prefill-Decode) multimodal test for nightly CI
name
=
"epd_multimodal_image_and_embeddings"
,
# Uses llava model with 2 GPUs (encode shares GPU with prefill)
#
# TODO: Add Llama-4-Scout multimodal tests (agg_multimodal_llama, disagg_multimodal_llama)
# once CI supports gpu_8 runners and launch scripts are available
"epd_multimodal"
:
TRTLLMConfig
(
name
=
"epd_multimodal"
,
directory
=
trtllm_dir
,
directory
=
trtllm_dir
,
script_name
=
"epd_multimodal_image
_and_embeddings
.sh"
,
script_name
=
"epd_multimodal_image.sh"
,
marks
=
[
marks
=
[
pytest
.
mark
.
gpu_
4
,
pytest
.
mark
.
gpu_
2
,
pytest
.
mark
.
trtllm
,
pytest
.
mark
.
trtllm
,
pytest
.
mark
.
multimodal
,
pytest
.
mark
.
multimodal
,
pytest
.
mark
.
nightly
,
pytest
.
mark
.
nightly
,
],
],
model
=
"llava-hf/llava-v1.6-mistral-7b-hf"
,
model
=
"llava-hf/llava-v1.6-mistral-7b-hf"
,
frontend_port
=
DefaultPort
.
FRONTEND
.
value
,
frontend_port
=
DefaultPort
.
FRONTEND
.
value
,
timeout
=
12
00
,
timeout
=
9
00
,
delayed_start
=
120
,
delayed_start
=
120
,
request_payloads
=
[
multimodal_payload_default
()],
request_payloads
=
[
multimodal_payload_default
(
text
=
"Describe what you see in this image."
,
expected_response
=
[
"mountain"
,
"rock"
,
"trees"
,
"road"
],
)
],
env
=
{
# Override GPU assignments to fit on 2 GPUs (encode shares with prefill)
"PREFILL_CUDA_VISIBLE_DEVICES"
:
"0"
,
"DECODE_CUDA_VISIBLE_DEVICES"
:
"1"
,
"ENCODE_CUDA_VISIBLE_DEVICES"
:
"0"
,
},
),
),
"completions_only"
:
TRTLLMConfig
(
"completions_only"
:
TRTLLMConfig
(
name
=
"completions_only"
,
name
=
"completions_only"
,
...
...
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