File tree Expand file tree Collapse file tree 2 files changed +10
-7
lines changed Expand file tree Collapse file tree 2 files changed +10
-7
lines changed Original file line number Diff line number Diff line change 91
91
92
92
- name : Install dpnp dependencies
93
93
run : |
94
- conda install numpy"<1.24" dpctl">=0.15.0 " mkl-devel-dpcpp onedpl-devel tbb-devel dpcpp_linux-64 \
94
+ conda install numpy"<1.24" dpctl">=0.15.1dev1 " mkl-devel-dpcpp onedpl-devel tbb-devel dpcpp_linux-64 \
95
95
cmake cython pytest ninja scikit-build sysroot_linux-64">=2.28" ${{ env.CHANNELS }}
96
96
97
97
- name : Install cuPy dependencies
Original file line number Diff line number Diff line change
1
+ {% set required_compiler_and_mkl_version = "2024.0" %}
2
+ {% set required_dpctl_version = "0.15.1dev1" %}
3
+
1
4
package :
2
5
name : dpnp
3
6
version : {{ GIT_DESCRIBE_TAG }}
@@ -13,21 +16,21 @@ requirements:
13
16
- cmake >=3.21
14
17
- ninja
15
18
- git
16
- - dpctl >=0.15.0
17
- - mkl-devel-dpcpp {{ environ.get('MKL_VER', '>=2024.0') }}
19
+ - dpctl >={{ required_dpctl_version }}
20
+ - mkl-devel-dpcpp >= {{ required_compiler_and_mkl_version }}
18
21
- onedpl-devel
19
22
- tbb-devel
20
23
- wheel
21
24
- scikit-build
22
25
build :
23
26
- {{ compiler('cxx') }}
24
- - {{ compiler('dpcpp') }} >=2024.0 # [not osx]
27
+ - {{ compiler('dpcpp') }} >={{ required_compiler_and_mkl_version }} # [not osx]
25
28
- sysroot_linux-64 >=2.28 # [linux]
26
29
run :
27
30
- python
28
- - dpctl >=0.15.0
29
- - dpcpp-cpp-rt >=2024.0
30
- - {{ pin_compatible('mkl-dpcpp', min_pin='x.x', max_pin='x' ) }}
31
+ - dpctl >={{ required_dpctl_version }}
32
+ - {{ pin_compatible(' dpcpp-cpp-rt', min_pin='x.x') }}
33
+ - {{ pin_compatible('mkl-dpcpp', min_pin='x.x') }}
31
34
- {{ pin_compatible('numpy', min_pin='x.x', max_pin='x') }}
32
35
33
36
build :
You can’t perform that action at this time.
0 commit comments