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
f7b3ba82
"tests/vscode:/vscode.git/clone" did not exist on "978a37c82387ce4a40aaadddcdbaf4a06fc4d590"
Unverified
Commit
f7b3ba82
authored
Jan 13, 2025
by
Yangcheng Li
Committed by
GitHub
Jan 13, 2025
Browse files
[MISC] fix typo in kv transfer send recv test (#11983)
parent
619ae268
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
tests/kv_transfer/test_send_recv.py
tests/kv_transfer/test_send_recv.py
+2
-2
No files found.
tests/kv_transfer/test_send_recv.py
View file @
f7b3ba82
...
...
@@ -22,13 +22,13 @@ def test_run(my_rank, pipe):
x2
=
pipe
.
recv_tensor
()
print
(
f
"rank
{
my_rank
}
received x2 = "
,
x2
)
y2
=
pipe
.
recv_tensor
()
print
(
f
"rank
{
my_rank
}
received y2 = "
,
x
2
)
print
(
f
"rank
{
my_rank
}
received y2 = "
,
y
2
)
else
:
x2
=
pipe
.
recv_tensor
()
print
(
f
"rank
{
my_rank
}
received x2 = "
,
x2
)
y2
=
pipe
.
recv_tensor
()
print
(
f
"rank
{
my_rank
}
received y2 = "
,
x
2
)
print
(
f
"rank
{
my_rank
}
received y2 = "
,
y
2
)
pipe
.
send_tensor
(
x
)
print
(
f
"rank
{
my_rank
}
sent tensor x"
)
pipe
.
send_tensor
(
y
)
...
...
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