Skip to content

Commit

Permalink
fix qwen
Browse files Browse the repository at this point in the history
  • Loading branch information
RunningLeon committed Dec 11, 2023
1 parent a2868be commit db9559a
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,9 @@ jobs:
make -j$(nproc) && make install
- name: Install lmdeploy
run: |
python3 -m pip install packaging protobuf transformers_stream_generator flash-attn transformers==4.33.0
# manually install flash attn
python3 -m pip install /root/packages/flash_attn-2.3.6+cu118torch2.0cxx11abiFALSE-cp38-cp38-linux_x86_64.whl
python3 -m pip install packaging protobuf transformers_stream_generator transformers==4.33.0
python3 -m pip install -r requirements.txt -r requirements/test.txt
python3 -m pip install .
- name: Check env
Expand All @@ -94,7 +96,7 @@ jobs:
lmdeploy check_env
- name: Test lmdeploy
run: |
pytest autotest -m 'not Qwen_14B_Chat and not Qwen_7B_Chat' ${{github.event.inputs.markers}} --alluredir=allure-results --clean-alluredir
pytest autotest ${{github.event.inputs.markers}} --alluredir=allure-results --clean-alluredir
- name: Generate reports
if: always()
run: |
Expand Down

0 comments on commit db9559a

Please sign in to comment.