Skip to content

Commit aa5800e

Browse files
authored
Fix build env used for testing oneMath interface (#2646)
The PR updates the file with the conda environment used to create build conda env for testing oneMath interfaces: - forced to use DPC++ and MKL from the latest release 2025.3 (no the latest compiler packages on conda-forge yet) - forced to install TBB from Intel channel, because MKL is not compatible with the latest `tbb` from the conda-forge when cmake option `MKL_THREADING=tbb_thread` used Alternatively there might an approach to create the env with strict channel priority, now the default one is flexible, which can't guarantee the packages from high priority channel are installing.
1 parent 0c4d440 commit aa5800e

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

environments/oneapi_pkgs.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ name: OneAPI packages to build DPNP without OneAPI env activated
22
channels:
33
- https://software.repos.intel.com/python/conda/
44
dependencies:
5-
- dpcpp_linux-64
6-
- mkl-devel-dpcpp
5+
- dpcpp_linux-64>=2025.3 # force to install the latest release
6+
- mkl-devel-dpcpp>=2025.3 # force to install the latest release
77
- onedpl-devel
8-
- tbb-devel
8+
- tbb-devel * intel_* # MKL hardly dependces on TBB from Intel channel

0 commit comments

Comments
 (0)