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
vllm_cscc
Commits
7ba34b12
Unverified
Commit
7ba34b12
authored
Jul 21, 2025
by
Jiayi Yan
Committed by
GitHub
Jul 20, 2025
Browse files
[bugfix] fix syntax warning caused by backslash (#21251)
parent
9499e26e
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
2 deletions
+2
-2
examples/offline_inference/neuron_eagle.py
examples/offline_inference/neuron_eagle.py
+1
-1
tests/v1/kv_connector/unit/test_nixl_connector.py
tests/v1/kv_connector/unit/test_nixl_connector.py
+1
-1
No files found.
examples/offline_inference/neuron_eagle.py
View file @
7ba34b12
...
...
@@ -54,7 +54,7 @@ def main():
for
output
in
outputs
:
prompt
=
output
.
prompt
generated_text
=
output
.
outputs
[
0
].
text
print
(
f
"Prompt:
{
prompt
!
r
}
,
\n\n\n
\
Generated text:
{
generated_text
!
r
}
"
)
print
(
f
"Prompt:
{
prompt
!
r
}
,
\n\n\n
Generated text:
{
generated_text
!
r
}
"
)
if
__name__
==
"__main__"
:
...
...
tests/v1/kv_connector/unit/test_nixl_connector.py
View file @
7ba34b12
...
...
@@ -341,7 +341,7 @@ def test_abort_timeout_on_prefiller(monkeypatch, distributed_executor_backend):
Test lifecycle of an aborted Remote Prefill request hitting the timeout.
-----> P
| {process request}
<-
\
--- | {result is NOT delivered, eg proxy is down}
<-
/
--- | {result is NOT delivered, eg proxy is down}
|
|
| {eventually free blocks}
...
...
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