Skip to content

Commit 87eea68

Browse files
Test commit with #1554
1 parent 9da67c8 commit 87eea68

File tree

9 files changed

+10
-1167
lines changed

9 files changed

+10
-1167
lines changed

CMakeLists.txt

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -28,16 +28,16 @@ set(CMAKE_MODULE_PATH ${CMAKE_MODULE_PATH} ${DPCTL_MODULE_PATH})
2828

2929

3030
find_package(IntelDPCPP REQUIRED)
31-
find_package(TBB REQUIRED PATHS ${CMAKE_SOURCE_DIR}/dpnp/backend/cmake/Modules NO_DEFAULT_PATH)
31+
find_package(TBB REQUIRED)
3232

3333
set(MKL_ARCH "intel64")
3434
set(MKL_LINK "dynamic")
35-
set(MKL_INTERFACE_FULL "intel_ilp64")
3635
set(MKL_THREADING "tbb_thread")
37-
find_package(MKL REQUIRED PATHS ${CMAKE_SOURCE_DIR}/dpnp/backend/cmake/Modules NO_DEFAULT_PATH)
36+
set(MKL_INTERFACE "ilp64")
37+
find_package(MKL REQUIRED)
3838

3939
set(ONEDPL_PAR_BACKEND tbb)
40-
find_package(oneDPL REQUIRED PATHS ${CMAKE_SOURCE_DIR}/dpnp/backend/cmake/Modules NO_DEFAULT_PATH)
40+
find_package(oneDPL REQUIRED)
4141

4242
include(GNUInstallDirs)
4343

conda-recipe/meta.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,14 +14,14 @@ requirements:
1414
- ninja
1515
- git
1616
- dpctl >=0.14.5
17-
- mkl-devel-dpcpp {{ environ.get('MKL_VER', '>=2023.2.0') }}
18-
- onedpl-devel
17+
- mkl-devel-dpcpp {{ environ.get('MKL_VER', '>=2024.0*') }}
18+
- onedpl-devel >=2022.3*
1919
- tbb-devel
2020
- wheel
2121
- scikit-build
2222
build:
2323
- {{ compiler('cxx') }}
24-
- {{ compiler('dpcpp') }} >=2023.2.0 # [not osx]
24+
- {{ compiler('dpcpp') }} >=2024.0* # [not osx]
2525
- sysroot_linux-64 >=2.28 # [linux]
2626
run:
2727
- python

dpnp/backend/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ if(DPNP_GENERATE_COVERAGE)
8989
target_link_options(${_trgt} PRIVATE -fprofile-instr-generate -fcoverage-mapping)
9090
endif()
9191

92-
target_link_libraries(${_trgt} PUBLIC MKL::MKL_DPCPP)
92+
target_link_libraries(${_trgt} PUBLIC MKL::MKL_SYCL)
9393
target_link_libraries(${_trgt} PUBLIC oneDPL)
9494

9595
if (UNIX)

0 commit comments

Comments
 (0)