We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 778bf15 commit 95743beCopy full SHA for 95743be
.github/workflows/test_ipex.yml
@@ -44,6 +44,16 @@ jobs:
44
cd bitsandbytes
45
pip install .
46
47
+ - name: Install autoawq
48
+ run: |
49
+ git clone https://github.com/casper-hansen/AutoAWQ.git
50
+ cd AutoAWQ
51
+ pip install .
52
+
53
+ - name: Install HF
54
55
+ pip install .[ipex,tests] transformers[testing]==${{ matrix.transformers-version }} intel_extension_for_pytorch==${{ matrix.torch-version }}
56
57
- name: Assert versions
58
run: |
59
python -c "import torch; print(torch.__version__); assert torch.__version__.startswith('${{ matrix.torch-version }}'.replace('.*', ''))"
0 commit comments