From 9c8ac6cc35191e00afa52462b992fa4ad9b61b45 Mon Sep 17 00:00:00 2001 From: Anton Volkov Date: Wed, 14 May 2025 13:31:40 +0200 Subject: [PATCH 1/4] Bump oneMath version to v0.7 --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 87c0053926b3..f24c15c0f729 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -122,7 +122,7 @@ if(_use_onemkl_interfaces) FetchContent_Declare( onemkl_interfaces_library GIT_REPOSITORY https://github.com/uxlfoundation/oneMath.git - GIT_TAG 8f4312ef966420b9b8b4b82b9d5c22e2c91a1fe7 # v0.6 + GIT_TAG 20ba6fd7ae4af6ed693246cfd22c343e6522edbe # v0.7 ) endif() From 6669d4a136e9093c8457df28f66e654e29b30559 Mon Sep 17 00:00:00 2001 From: Anton Volkov Date: Wed, 14 May 2025 13:35:06 +0200 Subject: [PATCH 2/4] Populate the changelog --- CHANGELOG.md | 1 + 1 file changed, 1 insertion(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index ef0e9f832ee2..8808e3d56640 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -31,6 +31,7 @@ This release achieves 100% compliance with Python Array API specification (revis * Changed `"max dimensions"` to `None` in array API capabilities [#2432](https://github.com/IntelPython/dpnp/pull/2432) * Updated kernel header `i0.hpp` to expose `cyl_bessel_i0` function depending on build target [#2440](https://github.com/IntelPython/dpnp/pull/2440) * Added MKL functions `arg`, `copysign`, `i0`, and `inv` from VM namespace to be used by implementation of the appropriate element-wise functions [#2445](https://github.com/IntelPython/dpnp/pull/2445) +* Bumped oneMKL version up to `0.7` [#2448](https://github.com/IntelPython/dpnp/pull/2448) ### Fixed From 138af90c89adec1c51979fc3c3c379df2d37ff6a Mon Sep 17 00:00:00 2001 From: Anton Volkov Date: Wed, 14 May 2025 16:11:39 +0200 Subject: [PATCH 3/4] Rename onemkl_interfaces_library to onemath_library --- CMakeLists.txt | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index f24c15c0f729..5261ee69c629 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -117,16 +117,16 @@ if(_use_onemkl_interfaces) endif() if(DPNP_ONEMKL_INTERFACES_DIR) - FetchContent_Declare(onemkl_interfaces_library SOURCE_DIR "${DPNP_ONEMKL_INTERFACES_DIR}") + FetchContent_Declare(onemath_library SOURCE_DIR "${DPNP_ONEMKL_INTERFACES_DIR}") else() FetchContent_Declare( - onemkl_interfaces_library + onemath_library GIT_REPOSITORY https://github.com/uxlfoundation/oneMath.git GIT_TAG 20ba6fd7ae4af6ed693246cfd22c343e6522edbe # v0.7 ) endif() - FetchContent_MakeAvailable(onemkl_interfaces_library) + FetchContent_MakeAvailable(onemath_library) if(TARGET onemath) set(MKL_INTERFACES_LIB "onemath" CACHE INTERNAL "OneMath lib target") elseif(TARGET onemkl) From d6256228d327cec6f523eeac4a05502448d445e6 Mon Sep 17 00:00:00 2001 From: Anton Volkov Date: Wed, 14 May 2025 18:17:42 +0200 Subject: [PATCH 4/4] Add gh-2446 to changelog --- CHANGELOG.md | 1 + 1 file changed, 1 insertion(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 8808e3d56640..bff849e27dfb 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -31,6 +31,7 @@ This release achieves 100% compliance with Python Array API specification (revis * Changed `"max dimensions"` to `None` in array API capabilities [#2432](https://github.com/IntelPython/dpnp/pull/2432) * Updated kernel header `i0.hpp` to expose `cyl_bessel_i0` function depending on build target [#2440](https://github.com/IntelPython/dpnp/pull/2440) * Added MKL functions `arg`, `copysign`, `i0`, and `inv` from VM namespace to be used by implementation of the appropriate element-wise functions [#2445](https://github.com/IntelPython/dpnp/pull/2445) +* Clarified details about conda install instructions in `Quick start quide` and `README` [#2446](https://github.com/IntelPython/dpnp/pull/2446) * Bumped oneMKL version up to `0.7` [#2448](https://github.com/IntelPython/dpnp/pull/2448) ### Fixed