We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 619ae26 commit f7b3ba8Copy full SHA for f7b3ba8
tests/kv_transfer/test_send_recv.py
@@ -22,13 +22,13 @@ def test_run(my_rank, pipe):
22
x2 = pipe.recv_tensor()
23
print(f"rank {my_rank} received x2 = ", x2)
24
y2 = pipe.recv_tensor()
25
- print(f"rank {my_rank} received y2 = ", x2)
+ print(f"rank {my_rank} received y2 = ", y2)
26
27
else:
28
29
30
31
32
pipe.send_tensor(x)
33
print(f"rank {my_rank} sent tensor x")
34
pipe.send_tensor(y)
0 commit comments