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
2bcbda19
Unverified
Commit
2bcbda19
authored
Feb 06, 2026
by
Karen Chung
Committed by
GitHub
Feb 06, 2026
Browse files
fix: Router + SGLang DP testing (#6057)
parent
7d035aff
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
1 deletion
+5
-1
components/src/dynamo/sglang/publisher.py
components/src/dynamo/sglang/publisher.py
+1
-0
tests/router/test_router_e2e_with_sglang.py
tests/router/test_router_e2e_with_sglang.py
+4
-1
No files found.
components/src/dynamo/sglang/publisher.py
View file @
2bcbda19
...
@@ -234,6 +234,7 @@ class DynamoSglangPublisher:
...
@@ -234,6 +234,7 @@ class DynamoSglangPublisher:
kv_block_size
=
self
.
server_args
.
page_size
,
kv_block_size
=
self
.
server_args
.
page_size
,
zmq_endpoint
=
zmq_ep
,
zmq_endpoint
=
zmq_ep
,
enable_local_indexer
=
self
.
dynamo_args
.
enable_local_indexer
,
enable_local_indexer
=
self
.
dynamo_args
.
enable_local_indexer
,
dp_rank
=
dp_rank
,
)
)
logging
.
info
(
logging
.
info
(
f
"Setting up ZMQ kv event subscriber for dp_rank=
{
dp_rank
}
"
f
"Setting up ZMQ kv event subscriber for dp_rank=
{
dp_rank
}
"
...
...
tests/router/test_router_e2e_with_sglang.py
View file @
2bcbda19
...
@@ -25,7 +25,7 @@ from tests.utils.port_utils import allocate_ports, deallocate_ports
...
@@ -25,7 +25,7 @@ from tests.utils.port_utils import allocate_ports, deallocate_ports
logger
=
logging
.
getLogger
(
__name__
)
logger
=
logging
.
getLogger
(
__name__
)
MODEL_NAME
=
"
TinyLlama/TinyLlama-1.1B-Chat-v1.0
"
MODEL_NAME
=
"
silence09/DeepSeek-R1-Small-2layers
"
pytestmark
=
[
pytestmark
=
[
pytest
.
mark
.
e2e
,
pytest
.
mark
.
e2e
,
...
@@ -173,6 +173,9 @@ class SGLangProcess:
...
@@ -173,6 +173,9 @@ class SGLangProcess:
[
[
"--dp-size"
,
"--dp-size"
,
str
(
data_parallel_size
),
str
(
data_parallel_size
),
"--tp-size"
,
str
(
data_parallel_size
),
"--enable-dp-attention"
,
]
]
)
)
...
...
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