Skip to content

Commit a79d1ca

Browse files
authored
Bump oneMath version to v0.7 (#2448)
There was a new `oneMath` release [v0.7](https://github.com/uxlfoundation/oneMath/releases/tag/v0.7) published. Thus the PR updates `oneMath` version used by default dpnp build with enabled oneMKL interfaces. Also, the name of fetched oneMath library changed from legacy `onemkl_interfaces_library` to `onemath_library` to reflact the actual library naming.
1 parent 61672ca commit a79d1ca

File tree

2 files changed

+6
-4
lines changed

2 files changed

+6
-4
lines changed

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,8 @@ This release achieves 100% compliance with Python Array API specification (revis
3131
* Changed `"max dimensions"` to `None` in array API capabilities [#2432](https://github.com/IntelPython/dpnp/pull/2432)
3232
* Updated kernel header `i0.hpp` to expose `cyl_bessel_i0` function depending on build target [#2440](https://github.com/IntelPython/dpnp/pull/2440)
3333
* 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)
34+
* Clarified details about conda install instructions in `Quick start quide` and `README` [#2446](https://github.com/IntelPython/dpnp/pull/2446)
35+
* Bumped oneMKL version up to `0.7` [#2448](https://github.com/IntelPython/dpnp/pull/2448)
3436

3537
### Fixed
3638

CMakeLists.txt

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -117,16 +117,16 @@ if(_use_onemkl_interfaces)
117117
endif()
118118

119119
if(DPNP_ONEMKL_INTERFACES_DIR)
120-
FetchContent_Declare(onemkl_interfaces_library SOURCE_DIR "${DPNP_ONEMKL_INTERFACES_DIR}")
120+
FetchContent_Declare(onemath_library SOURCE_DIR "${DPNP_ONEMKL_INTERFACES_DIR}")
121121
else()
122122
FetchContent_Declare(
123-
onemkl_interfaces_library
123+
onemath_library
124124
GIT_REPOSITORY https://github.com/uxlfoundation/oneMath.git
125-
GIT_TAG 8f4312ef966420b9b8b4b82b9d5c22e2c91a1fe7 # v0.6
125+
GIT_TAG 20ba6fd7ae4af6ed693246cfd22c343e6522edbe # v0.7
126126
)
127127
endif()
128128

129-
FetchContent_MakeAvailable(onemkl_interfaces_library)
129+
FetchContent_MakeAvailable(onemath_library)
130130
if(TARGET onemath)
131131
set(MKL_INTERFACES_LIB "onemath" CACHE INTERNAL "OneMath lib target")
132132
elseif(TARGET onemkl)

0 commit comments

Comments
 (0)