Skip to content

Commit 582b56e

Browse files
authored
MKL version mismatch in conda and intelOneAPI (#759)
Current version of MKL in conda "mkl-2021.2.0-h06a4308_296" MKL version in Intel One API is "2021.3.0" So, libraries could not be used simultaniously because DPNP uses python MKL but DPNPC uses intel one API MKL.
1 parent 15aa021 commit 582b56e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

scripts/install_python_deps.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@ echo ========================= Conda: install prerequisites ====================
99
# because numpy is installed with openblas for Python 3.9 by default
1010
conda install -y conda-build numpy=1.20.1 blas=*=mkl cython pytest hypothesis
1111

12-
# echo ========================= Conda: remove mkl ====================================
13-
# conda remove mkl --force -y || true
12+
echo ========================= Conda: remove mkl ====================================
13+
conda remove mkl --force -y || true
1414

1515
echo ========================= PIP3: install prerequisites ==========================
1616
pip3 install pytest-valgrind

0 commit comments

Comments
 (0)