Skip to content

Commit

Permalink
Explicitly deactivating AVX512 should not be needed anymore
Browse files Browse the repository at this point in the history
  • Loading branch information
FrancescAlted committed Dec 1, 2023
1 parent 78f9bcf commit 9d0baee
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/cibuildwheels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,8 @@ jobs:
run: |
python -m cibuildwheel --output-dir wheelhouse
env:
CIBW_CONFIG_SETTINGS: "--build-option=-DDEACTIVATE_AVX512:BOOL=YES"
# Starting with C-Blosc2 2.11.3, we should not need to deactivate AVX512
# CIBW_CONFIG_SETTINGS: "--build-option=-DDEACTIVATE_AVX512:BOOL=YES"

- name: Upload wheels
uses: actions/upload-artifact@v3
Expand Down Expand Up @@ -118,7 +119,9 @@ jobs:
cd ./dist
tar -xzf blosc2-*.tar.gz
cd ./blosc2-*/
python setup.py build_ext --inplace -DDEACTIVATE_AVX512:BOOL=YES
# Starting with C-Blosc2 2.11.3, we should not need to deactivate AVX512
# python setup.py build_ext --inplace -DDEACTIVATE_AVX512:BOOL=YES
python setup.py build_ext --inplace
- name: Test sdist package with pytest
run: |
Expand Down

0 comments on commit 9d0baee

Please sign in to comment.