From d4ceed0863cc8166460649b84359adea695a334d Mon Sep 17 00:00:00 2001 From: Anton <100830759+antonwolfy@users.noreply.github.com> Date: Fri, 20 Dec 2024 11:33:15 +0100 Subject: [PATCH] Backport gh-2231 and gh-2236 (#2244) This PR backports of #2231, #2236 from development branch to `maintenance/0.16.x`. --- .github/workflows/conda-package.yml | 7 +++---- CHANGELOG.md | 7 +++++++ dpnp/backend/kernels/dpnp_krnl_common.cpp | 2 +- 3 files changed, 11 insertions(+), 5 deletions(-) diff --git a/.github/workflows/conda-package.yml b/.github/workflows/conda-package.yml index 6c34fa976d7..ecfa0ac2ca7 100644 --- a/.github/workflows/conda-package.yml +++ b/.github/workflows/conda-package.yml @@ -214,7 +214,7 @@ jobs: - name: Test conda channel run: | - mamba search ${{ env.PACKAGE_NAME }} -c ${{ env.channel-path }} --override-channels --info --json > ${{ env.ver-json-path }} + conda search ${{ env.PACKAGE_NAME }} -c ${{ env.channel-path }} --override-channels --info --json > ${{ env.ver-json-path }} cat ${{ env.ver-json-path }} - name: Collect dependencies @@ -266,8 +266,7 @@ jobs: id: run_tests_linux uses: nick-fields/retry@7152eba30c6575329ac0576536151aca5a72780e # v3.0.0 with: - shell: bash - timeout_minutes: 10 + timeout_minutes: 12 max_attempts: ${{ env.RUN_TESTS_MAX_ATTEMPTS }} retry_on: any command: | @@ -351,7 +350,7 @@ jobs: - name: Test conda channel run: | @echo on - mamba search ${{ env.PACKAGE_NAME }} -c ${{ env.channel-path }} --override-channels --info --json > ${{ env.ver-json-path }} + conda search ${{ env.PACKAGE_NAME }} -c ${{ env.channel-path }} --override-channels --info --json > ${{ env.ver-json-path }} - name: Dump version.json run: more ${{ env.ver-json-path }} diff --git a/CHANGELOG.md b/CHANGELOG.md index 72c5b672989..c9552e9090f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,13 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [0.16.3] - 12/20/2024 + +### Fixed + +* Bumped min version of DPC++ compiler required to support experimental SYCL properties [#2231](https://github.com/IntelPython/dpnp/pull/2231) + + ## [0.16.2] - 12/20/2024 ### Fixed diff --git a/dpnp/backend/kernels/dpnp_krnl_common.cpp b/dpnp/backend/kernels/dpnp_krnl_common.cpp index 453c9a88747..545dce251ac 100644 --- a/dpnp/backend/kernels/dpnp_krnl_common.cpp +++ b/dpnp/backend/kernels/dpnp_krnl_common.cpp @@ -38,7 +38,7 @@ * sycl::ext::oneapi::experimental::properties was added. */ #ifndef __SYCL_COMPILER_REDUCTION_PROPERTIES_SUPPORT -#define __SYCL_COMPILER_REDUCTION_PROPERTIES_SUPPORT 20241129 +#define __SYCL_COMPILER_REDUCTION_PROPERTIES_SUPPORT 20241208L #endif namespace mkl_blas = oneapi::mkl::blas;