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
af1f1155
Unverified
Commit
af1f1155
authored
Jun 11, 2025
by
Alec
Committed by
GitHub
Jun 12, 2025
Browse files
fix: Python respects DYN_LOG too (#1486)
parent
2ae9ab9f
Changes
4
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
8 additions
and
4 deletions
+8
-4
launch/dynamo-run/src/subprocess/sglang_inc.py
launch/dynamo-run/src/subprocess/sglang_inc.py
+2
-1
launch/dynamo-run/src/subprocess/trtllm_inc.py
launch/dynamo-run/src/subprocess/trtllm_inc.py
+2
-1
launch/dynamo-run/src/subprocess/vllm_inc.py
launch/dynamo-run/src/subprocess/vllm_inc.py
+2
-1
launch/dynamo-run/src/subprocess/vllm_v1_inc.py
launch/dynamo-run/src/subprocess/vllm_v1_inc.py
+2
-1
No files found.
launch/dynamo-run/src/subprocess/sglang_inc.py
View file @
af1f1155
...
...
@@ -17,12 +17,13 @@ from sglang.srt.server_args import ServerArgs
from
dynamo.llm
import
ModelType
,
register_llm
from
dynamo.runtime
import
DistributedRuntime
,
dynamo_worker
from
dynamo.runtime.logging
import
configure_dynamo_logging
# Only used if you run it manually from the command line
DEFAULT_ENDPOINT
=
"dyn://dynamo.backend.generate"
DEFAULT_MODEL
=
"Qwen/Qwen3-0.6B"
logging
.
basicConfig
(
level
=
logging
.
DEBUG
)
configure_dynamo_
logging
(
)
class
Config
:
...
...
launch/dynamo-run/src/subprocess/trtllm_inc.py
View file @
af1f1155
...
...
@@ -39,6 +39,7 @@ from dynamo.llm import (
register_llm
,
)
from
dynamo.runtime
import
DistributedRuntime
,
dynamo_worker
from
dynamo.runtime.logging
import
configure_dynamo_logging
# Only used if you run it manually from the command line
DEFAULT_ENDPOINT
=
"dyn://dynamo.backend.generate"
...
...
@@ -50,7 +51,7 @@ DEFAULT_PREFILL_ENDPOINT = "dyn://dynamo.prefill.generate"
# Default buffer size for kv cache events.
DEFAULT_KV_EVENT_BUFFER_MAX_SIZE
=
1024
logging
.
basicConfig
(
level
=
logging
.
DEBUG
)
configure_dynamo_
logging
(
)
def
parse_endpoint
(
endpoint
:
str
)
->
tuple
[
str
,
str
,
str
]:
...
...
launch/dynamo-run/src/subprocess/vllm_inc.py
View file @
af1f1155
...
...
@@ -28,12 +28,13 @@ from vllm.inputs import TokensPrompt
from
dynamo.llm
import
ModelType
,
WorkerMetricsPublisher
,
register_llm
from
dynamo.runtime
import
DistributedRuntime
,
dynamo_worker
from
dynamo.runtime.logging
import
configure_dynamo_logging
# Only used if you run it manually from the command line
DEFAULT_ENDPOINT
=
"dyn://dynamo.backend.generate"
DEFAULT_MODEL
=
"Qwen/Qwen3-0.6B"
logging
.
basicConfig
(
level
=
logging
.
DEBUG
)
configure_dynamo_
logging
(
)
class
Config
:
...
...
launch/dynamo-run/src/subprocess/vllm_v1_inc.py
View file @
af1f1155
...
...
@@ -40,12 +40,13 @@ from dynamo.llm import (
register_llm
,
)
from
dynamo.runtime
import
Component
,
DistributedRuntime
,
dynamo_worker
from
dynamo.runtime.logging
import
configure_dynamo_logging
# Only used if you run it manually from the command line
DEFAULT_ENDPOINT
=
"dyn://dynamo.backend.generate"
DEFAULT_MODEL
=
"Qwen/Qwen3-0.6B"
logging
.
basicConfig
(
level
=
logging
.
DEBUG
)
configure_dynamo_
logging
(
)
logger
=
logging
.
getLogger
(
__name__
)
...
...
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