Skip to content

Commit f91789a

Browse files
zingaleyut23
andauthored
disable AVX512_SKX in CI (#176)
Co-authored-by: Eric T. Johnson <yut23@users.noreply.github.com>
1 parent 0815f12 commit f91789a

2 files changed

Lines changed: 5 additions & 2 deletions

File tree

.github/workflows/regtest.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,5 +44,8 @@ jobs:
4444
run: pip install .
4545

4646
- name: Run tests via test.py
47-
run: ./pyro/test.py --nproc 0
47+
run: |
48+
# Numpy 1.24 gets slightly diff answers: https://github.com/numpy/numpy/issues/23289
49+
export NPY_DISABLE_CPU_FEATURES="AVX512_SKX"
50+
./pyro/test.py --nproc 0
4851

requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
numpy>=1.13.3,<1.24
1+
numpy>=1.13.3
22
matplotlib>=2.0.0
33
h5py>=2.7
44
scipy>=0.16

0 commit comments

Comments
 (0)