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 7e0a773
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/build_pip.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,9 @@ 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 mkl; print(mkl.__file__)"
- name: Build conda package
run: |
Expand All @@ -49,4 +51,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 7e0a773

Please sign in to comment.