We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c36aae0 commit 106f2d7Copy full SHA for 106f2d7
.github/workflows/build-with-clang.yml
@@ -70,11 +70,17 @@ jobs:
70
export CFLAGS="${CFLAGS} -fno-fast-math -O2"
71
pip install . --no-build-isolation --no-deps --verbose
72
73
+ - name: Smoke import
74
+ run: |
75
+ source ${{ env.ONEAPI_ROOT }}/setvars.sh
76
+ python -X faulthandler -c "import numpy, mkl_umath; print('import OK')"
77
+
78
- name: Run mkl_umath tests
79
run: |
80
source ${{ env.ONEAPI_ROOT }}/setvars.sh
81
pip install pytest
82
# mkl_umath cannot be installed in editable mode, we need
83
# to change directory before importing it and running tests
84
cd ..
85
+ export MKL_DISABLE_FAST_MM=1
86
python -m pytest -sv --pyargs mkl_umath/mkl_umath/tests
0 commit comments