Skip to content

Commit

Permalink
Triaging issue with mkl-service
Browse files Browse the repository at this point in the history
  • Loading branch information
oleksandr-pavlyk committed May 26, 2024
1 parent f160421 commit c8ca7dd
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions .github/workflows/build_pip.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -37,10 +37,15 @@ jobs:
python-version: ${{ matrix.python }}

- name: Install MKL
run: mamba install -c conda-forge mkl-devel mkl-service --override-channels
run: |
mamba install -c conda-forge mkl-devel mkl-service --override-channels
python -c "import sys; print(sys.executable)"
which python
python -c "import mkl; print(mkl.__file__)"
- name: Build conda package
run: |
mamba activate
pip install --no-cache-dir cython pytest hypothesis
pip install --no-cache-dir numpy ${{ matrix.use_pre }}
mamba info --system --json > system_info.json
Expand All @@ -49,4 +54,4 @@ jobs:
export MKLROOT=${MY_PREFIX}
pip install -e . --no-build-isolation --verbose --no-deps
export LD_LIBRARY_PATH=${LD_LIBRARY_PATH}:${MKLROOT}/lib
python -m pytest -v mkl_fft/tests
python -m pytest -v mkl_fft/tests/test_fft1d.py mkl_fft/tests/test_fftnd.py

0 comments on commit c8ca7dd

Please sign in to comment.