File tree 3 files changed +11
-5
lines changed
3 files changed +11
-5
lines changed Original file line number Diff line number Diff line change @@ -214,7 +214,7 @@ jobs:
214
214
215
215
- name : Test conda channel
216
216
run : |
217
- mamba search ${{ env.PACKAGE_NAME }} -c ${{ env.channel-path }} --override-channels --info --json > ${{ env.ver-json-path }}
217
+ conda search ${{ env.PACKAGE_NAME }} -c ${{ env.channel-path }} --override-channels --info --json > ${{ env.ver-json-path }}
218
218
cat ${{ env.ver-json-path }}
219
219
220
220
- name : Collect dependencies
@@ -266,8 +266,7 @@ jobs:
266
266
id : run_tests_linux
267
267
uses : nick-fields/retry@7152eba30c6575329ac0576536151aca5a72780e # v3.0.0
268
268
with :
269
- shell : bash
270
- timeout_minutes : 10
269
+ timeout_minutes : 12
271
270
max_attempts : ${{ env.RUN_TESTS_MAX_ATTEMPTS }}
272
271
retry_on : any
273
272
command : |
@@ -351,7 +350,7 @@ jobs:
351
350
- name : Test conda channel
352
351
run : |
353
352
@echo on
354
- mamba search ${{ env.PACKAGE_NAME }} -c ${{ env.channel-path }} --override-channels --info --json > ${{ env.ver-json-path }}
353
+ conda search ${{ env.PACKAGE_NAME }} -c ${{ env.channel-path }} --override-channels --info --json > ${{ env.ver-json-path }}
355
354
356
355
- name : Dump version.json
357
356
run : more ${{ env.ver-json-path }}
Original file line number Diff line number Diff line change @@ -4,6 +4,13 @@ All notable changes to this project will be documented in this file.
4
4
The format is based on [ Keep a Changelog] ( https://keepachangelog.com/en/1.1.0/ ) ,
5
5
and this project adheres to [ Semantic Versioning] ( https://semver.org/spec/v2.0.0.html ) .
6
6
7
+ ## [ 0.16.3] - 12/20/2024
8
+
9
+ ### Fixed
10
+
11
+ * Bumped min version of DPC++ compiler required to support experimental SYCL properties [ #2231 ] ( https://github.com/IntelPython/dpnp/pull/2231 )
12
+
13
+
7
14
## [ 0.16.2] - 12/20/2024
8
15
9
16
### Fixed
Original file line number Diff line number Diff line change 38
38
* sycl::ext::oneapi::experimental::properties was added.
39
39
*/
40
40
#ifndef __SYCL_COMPILER_REDUCTION_PROPERTIES_SUPPORT
41
- #define __SYCL_COMPILER_REDUCTION_PROPERTIES_SUPPORT 20241129
41
+ #define __SYCL_COMPILER_REDUCTION_PROPERTIES_SUPPORT 20241208L
42
42
#endif
43
43
44
44
namespace mkl_blas = oneapi::mkl::blas;
You can’t perform that action at this time.
0 commit comments