Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 5 additions & 3 deletions .github/workflows/unit_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -387,7 +387,8 @@ jobs:

- name: Install wheel
run: |
uv pip install colorlog logbar git+https://github.com/ModelCloud/Tokenicer -U
uv pip install tokenicer==0.0.4 -U
uv pip install logbar==0.0.3 -U
echo "===== install optimum bitblas parameterized uvicorn ====="
uv pip install optimum bitblas==0.0.1.dev13 parameterized uvicorn -i http://${{ needs.check-vm.outputs.ip }}/simple/ --trusted-host ${{ needs.check-vm.outputs.ip }} --extra-index-url https://pypi.org/simple
echo "===== install dist/whl ====="
Expand Down Expand Up @@ -547,7 +548,8 @@ jobs:

- name: Install wheel
run: |
uv pip install -U transformers colorlog logbar
uv pip install -U transformers
uv pip install -U logbar==0.0.3
if [ "${{ matrix.test_script }}" == "test_perplexity" ] || \
[ "${{ matrix.test_script }}" == "test_q4_bitblas" ] || \
[ "${{ matrix.test_script }}" == "test_save_loaded_quantized_model" ]; then
Expand All @@ -567,7 +569,7 @@ jobs:
if [[ "${{ matrix.test_script }}" == *xpu* ]]; then
echo "===== switching to xpu env ====="
source /etc/profile.d/pyenv.sh && pyenv activate xpu
uv pip install colorlog
uv pip install -U logbar==0.0.3
fi

if [[ "${{ matrix.test_script }}" == *ipex* ]] && [[ "${{ matrix.test_script }}" != *xpu* ]]; then
Expand Down