You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CHANGELOG.md
+7-1Lines changed: 7 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -4,9 +4,11 @@ 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.0.0/),
5
5
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
6
6
7
-
## [0.18.0] - MM/DD/2025
7
+
## [0.18.0] - 05/DD/2025
8
8
9
9
This release achieves 100% compliance with Python Array API specification (revision [2024.12](https://data-apis.org/array-api/2024.12/)).
10
+
The release provides enhanced compatibility with NumPy 2.2.5. Window and mathematical routines are complemented by a set of new functions.
11
+
Moreover, it adds support to build `dpnp` from the source for AMD GPUs.
10
12
11
13
### Added
12
14
@@ -39,13 +41,17 @@ This release achieves 100% compliance with Python Array API specification (revis
39
41
* The parameter `axis` in `dpnp.take_along_axis` function has now a default value of `-1`[#2442](https://github.com/IntelPython/dpnp/pull/2442)
40
42
* Updates the list of required python versions documented in `Quick Start Guide`[#2449](https://github.com/IntelPython/dpnp/pull/2449)
41
43
* Updated FFT module to ensure an input array is Hermitian before calling complex-to-real FFT [#2444](https://github.com/IntelPython/dpnp/pull/2444)
44
+
* Aligned `black` configuration with the list of supported python versions [#2457](https://github.com/IntelPython/dpnp/pull/2457)
45
+
* Use `pyproject.toml` instead of `setup.py` aligning with current packaging best practices [#2462](https://github.com/IntelPython/dpnp/pull/2462)
46
+
* Added a clarification to `dpnp.linalg.cond` docstring about its behavior with singular matrices [#2500] (https://github.com/IntelPython/dpnp/pull/2500)
42
47
43
48
### Fixed
44
49
45
50
* Resolved an issue with an incorrect result returned due to missing dependency from the strided kernel on a copy event in `dpnp.erf`[#2378](https://github.com/IntelPython/dpnp/pull/2378)
46
51
* Updated `conda create` commands build and install instructions of `Quick start guide` to avoid a compilation error [#2395](https://github.com/IntelPython/dpnp/pull/2395)
47
52
* Added handling of empty string passed to a test env variable defining data type scope as a `False` value [#2415](https://github.com/IntelPython/dpnp/pull/2415)
48
53
* Resolved build issues on non-Intel targets in `dpnp.i0` and `dpnp.kaiser`[#2439](https://github.com/IntelPython/dpnp/pull/2439)
54
+
* Ensure consistency in the `dpnp.linalg.LinAlgError` exception raised on singular input matrices for both non-batched and batched cases in `dpnp.linalg.inv`[#2458] (https://github.com/IntelPython/dpnp/pull/2458)
0 commit comments