Skip to content

Commit 9d0baee

Browse files
committed
Explicitly deactivating AVX512 should not be needed anymore
1 parent 78f9bcf commit 9d0baee

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

.github/workflows/cibuildwheels.yml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,8 @@ jobs:
6969
run: |
7070
python -m cibuildwheel --output-dir wheelhouse
7171
env:
72-
CIBW_CONFIG_SETTINGS: "--build-option=-DDEACTIVATE_AVX512:BOOL=YES"
72+
# Starting with C-Blosc2 2.11.3, we should not need to deactivate AVX512
73+
# CIBW_CONFIG_SETTINGS: "--build-option=-DDEACTIVATE_AVX512:BOOL=YES"
7374

7475
- name: Upload wheels
7576
uses: actions/upload-artifact@v3
@@ -118,7 +119,9 @@ jobs:
118119
cd ./dist
119120
tar -xzf blosc2-*.tar.gz
120121
cd ./blosc2-*/
121-
python setup.py build_ext --inplace -DDEACTIVATE_AVX512:BOOL=YES
122+
# Starting with C-Blosc2 2.11.3, we should not need to deactivate AVX512
123+
# python setup.py build_ext --inplace -DDEACTIVATE_AVX512:BOOL=YES
124+
python setup.py build_ext --inplace
122125
123126
- name: Test sdist package with pytest
124127
run: |

0 commit comments

Comments
 (0)