Skip to content

Commit d4ceed0

Browse files
authored
Backport gh-2231 and gh-2236 (#2244)
This PR backports of #2231, #2236 from development branch to `maintenance/0.16.x`.
1 parent 824254a commit d4ceed0

File tree

3 files changed

+11
-5
lines changed

3 files changed

+11
-5
lines changed

.github/workflows/conda-package.yml

+3-4
Original file line numberDiff line numberDiff line change
@@ -214,7 +214,7 @@ jobs:
214214
215215
- name: Test conda channel
216216
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 }}
218218
cat ${{ env.ver-json-path }}
219219
220220
- name: Collect dependencies
@@ -266,8 +266,7 @@ jobs:
266266
id: run_tests_linux
267267
uses: nick-fields/retry@7152eba30c6575329ac0576536151aca5a72780e # v3.0.0
268268
with:
269-
shell: bash
270-
timeout_minutes: 10
269+
timeout_minutes: 12
271270
max_attempts: ${{ env.RUN_TESTS_MAX_ATTEMPTS }}
272271
retry_on: any
273272
command: |
@@ -351,7 +350,7 @@ jobs:
351350
- name: Test conda channel
352351
run: |
353352
@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 }}
355354
356355
- name: Dump version.json
357356
run: more ${{ env.ver-json-path }}

CHANGELOG.md

+7
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,13 @@ All notable changes to this project will be documented in this file.
44
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
55
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
66

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+
714
## [0.16.2] - 12/20/2024
815

916
### Fixed

dpnp/backend/kernels/dpnp_krnl_common.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@
3838
* sycl::ext::oneapi::experimental::properties was added.
3939
*/
4040
#ifndef __SYCL_COMPILER_REDUCTION_PROPERTIES_SUPPORT
41-
#define __SYCL_COMPILER_REDUCTION_PROPERTIES_SUPPORT 20241129
41+
#define __SYCL_COMPILER_REDUCTION_PROPERTIES_SUPPORT 20241208L
4242
#endif
4343

4444
namespace mkl_blas = oneapi::mkl::blas;

0 commit comments

Comments
 (0)