forked from vllm-project/vllm
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[Misc] Update disaggregation benchmark scripts and test logs (vllm-pr…
…oject#11456) Signed-off-by: Jiaxin Shan <[email protected]>
- Loading branch information
Showing
6 changed files
with
43 additions
and
29 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,8 @@ | ||
#!/bin/bash | ||
RANK=0 python test_lookup_buffer.py & | ||
RANK=1 python test_lookup_buffer.py & | ||
RANK=0 python3 test_lookup_buffer.py & | ||
PID0=$! | ||
RANK=1 python3 test_lookup_buffer.py & | ||
PID1=$! | ||
|
||
wait $PID0 | ||
wait $PID1 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,9 @@ | ||
#!/bin/bash | ||
|
||
RANK=0 python3 test_send_recv.py & | ||
RANK=1 python3 test_send_recv.py & | ||
PID0=$! | ||
RANK=1 python3 test_send_recv.py & | ||
PID1=$! | ||
|
||
wait $PID0 | ||
wait $PID1 |