Skip to content
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/build_pip.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ jobs:

- name: Install Compiler and MKL
run: |
conda install mkl-devel tbb-devel dpcpp_linux-64
Comment thread
ndgrigorian marked this conversation as resolved.
conda install mkl-devel dpcpp_linux-64
python -c "import sys; print(sys.executable)"
which python

Expand Down
3 changes: 1 addition & 2 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -23,10 +23,9 @@ cmake_print_variables(Python_NumPy_INCLUDE_DIRS)
set(CYTHON_FLAGS "-t -w \"${CMAKE_SOURCE_DIR}\"")
find_package(Cython REQUIRED)

find_package(TBB REQUIRED)
set(MKL_ARCH "intel64")
set(MKL_LINK "dynamic")
set(MKL_THREADING "tbb_thread")
set(MKL_THREADING "intel_thread")
set(MKL_INTERFACE "lp64")
find_package(MKL REQUIRED)

Expand Down
1 change: 0 additions & 1 deletion conda-recipe/meta.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,6 @@ requirements:
- python
- python-gil # [py>=314]
- mkl-devel
- tbb-devel
Comment thread
antonwolfy marked this conversation as resolved.
- numpy-base
- wheel >=0.41.3
run:
Expand Down
Loading