mirror of
https://git.datalinker.icu/vllm-project/vllm.git
synced 2025-12-10 07:24:56 +08:00
9 lines
129 B
Bash
9 lines
129 B
Bash
#!/bin/bash
|
|
RANK=0 python3 test_lookup_buffer.py &
|
|
PID0=$!
|
|
RANK=1 python3 test_lookup_buffer.py &
|
|
PID1=$!
|
|
|
|
wait $PID0
|
|
wait $PID1
|