Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
KuilongCui committed Nov 18, 2024
1 parent a3f1994 commit 741b07a
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion tools/bench_test.sh
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,6 @@ set -ex

pgrep -f llumnix.entrypoints.vllm.api_server | { while read pid; do kill -9 "$pid"; done; }

nvidia-docker run --rm -t --ipc host -v ${PWD}:/workspace -v /mnt:/mnt -w /workspace \
nvidia-docker run --rm -t --net host --ipc host -v ${PWD}:/workspace -v /mnt:/mnt -w /workspace \
registry.cn-beijing.aliyuncs.com/llumnix/llumnix-dev:20240909_action_678a439 \
bash -c "pip install -e . > /dev/null && make bench_test"
2 changes: 1 addition & 1 deletion tools/e2e_test.sh
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,6 @@ set -ex

pgrep -f llumnix.entrypoints.vllm.api_server | { while read pid; do kill -9 "$pid"; done; }

nvidia-docker run --rm -t --ipc host -v ${PWD}:/workspace -v /mnt:/mnt -w /workspace \
nvidia-docker run --rm -t --net host --ipc host -v ${PWD}:/workspace -v /mnt:/mnt -w /workspace \
registry.cn-beijing.aliyuncs.com/llumnix/llumnix-dev:20240909_action_678a439 \
bash -c "pip install -e . > /dev/null && make e2e_test"
2 changes: 1 addition & 1 deletion tools/migration_test.sh
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,6 @@ set -ex

pgrep -f llumnix.entrypoints.vllm.api_server | { while read pid; do kill -9 "$pid"; done; }

nvidia-docker run --rm -t --ipc host -v ${PWD}:/workspace -v /mnt:/mnt -w /workspace \
nvidia-docker run --rm -t --net host --ipc host -v ${PWD}:/workspace -v /mnt:/mnt -w /workspace \
registry.cn-beijing.aliyuncs.com/llumnix/llumnix-dev:20240909_action_678a439 \
bash -c "pip install -e . > /dev/null && make migration_test"
2 changes: 1 addition & 1 deletion tools/offline_test.sh
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,6 @@ set -ex

pgrep -f llumnix.entrypoints.vllm.api_server | { while read pid; do kill -9 "$pid"; done; }

nvidia-docker run --rm -t --ipc host -v ${PWD}:/workspace -v /mnt:/mnt -w /workspace \
nvidia-docker run --rm -t --net host --ipc host -v ${PWD}:/workspace -v /mnt:/mnt -w /workspace \
registry.cn-beijing.aliyuncs.com/llumnix/llumnix-dev:20240909_action_678a439 \
bash -c "pip install -e . > /dev/null && make offline_test"
2 changes: 1 addition & 1 deletion tools/unit_test.sh
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,6 @@ set -ex

pgrep -f llumnix.entrypoints.vllm.api_server | { while read pid; do kill -9 "$pid"; done; }

nvidia-docker run --rm -t --ipc host -v ${PWD}:/workspace -v /mnt:/mnt -w /workspace \
nvidia-docker run --rm -t --net host --ipc host -v ${PWD}:/workspace -v /mnt:/mnt -w /workspace \
registry.cn-beijing.aliyuncs.com/llumnix/llumnix-dev:20240909_action_678a439 \
bash -c "pip install -e . > /dev/null && make unit_test"

0 comments on commit 741b07a

Please sign in to comment.