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
+29-2Lines changed: 29 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -4,7 +4,31 @@ 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.1.0/),
5
5
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
6
6
7
-
## [0.19.0] - 2025-MM-DD
7
+
## [0.20.0] - MM/DD/2026
8
+
9
+
### Added
10
+
11
+
* Added the docstrings to `dpnp.linalg.LinAlgError` exception [#2613](https://github.com/IntelPython/dpnp/pull/2613)
12
+
13
+
### Changed
14
+
15
+
* Silenced `pybind11` CMake message due to using compatibility mode for Python [#2614](https://github.com/IntelPython/dpnp/pull/2614)
16
+
17
+
### Deprecated
18
+
19
+
### Removed
20
+
21
+
### Fixed
22
+
23
+
### Security
24
+
25
+
26
+
## [0.19.0] - 2025-10-06
27
+
28
+
This release introduces a set of new `dpnp.ndarray` methods and SciPy-compatible functions to improve CuPy compatibility.
29
+
It also enhances the performance of existing functions and improves documentation completeness.
30
+
Additionally, it extends support for building `dpnp` from the source for NVIDIA GPUs, with optional architecture selection.
31
+
This release is compatible with NumPy 2.3.3.
8
32
9
33
### Added
10
34
@@ -18,6 +42,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
18
42
* Added implementation of `dpnp.linalg.lu_factor` (SciPy-compatible) [#2557](https://github.com/IntelPython/dpnp/pull/2557), [#2565](https://github.com/IntelPython/dpnp/pull/2565)
19
43
* Added implementation of `dpnp.piecewise`[#2550](https://github.com/IntelPython/dpnp/pull/2550)
20
44
* Added implementation of `dpnp.linalg.lu_solve` for 2D inputs (SciPy-compatible) [#2575](https://github.com/IntelPython/dpnp/pull/2575)
45
+
* Added implementation of `dpnp.special.erfc`[#2588](https://github.com/IntelPython/dpnp/pull/2588)
46
+
* Added `dpnp.scipy` submodule to aggregate new SciPy-compatible functions from `linalg` and `special` namespaces [#2603](https://github.com/IntelPython/dpnp/pull/2603)
21
47
22
48
### Changed
23
49
@@ -45,6 +71,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
45
71
* Redesigned `dpnp.erf` function through pybind11 extension of OneMKL call or dedicated kernel in `ufunc` namespace [#2551](https://github.com/IntelPython/dpnp/pull/2551)
46
72
* Improved performance of batched implementation of `dpnp.linalg.det` and `dpnp.linalg.slogdet`[#2572](https://github.com/IntelPython/dpnp/pull/2572)
47
73
* Improved documentations of `dpnp.tril_indices` and `dpnp.triu_indices` to clarify the returned order of indices [#2586](https://github.com/IntelPython/dpnp/pull/2586)
0 commit comments