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
Add implementation of dpnp.scipy.special.erfcx (#2596)
The PR adds the implementation of `dpnp.special.erfcx` function,
including tests coverage.
It also includes the special implementation of `erfcx` which will be
used when building dpnp from the source with support of AMD or NVIDIA
devices.
Copy file name to clipboardExpand all lines: CHANGELOG.md
+4-3Lines changed: 4 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -13,6 +13,7 @@ This release changes the license from `BSD-2-Clause` to `BSD-3-Clause`.
13
13
* Added the docstrings to `dpnp.linalg.LinAlgError` exception [#2613](https://github.com/IntelPython/dpnp/pull/2613)
14
14
* Added implementation of `dpnp.linalg.lu_solve` for batch inputs (SciPy-compatible) [#2619](https://github.com/IntelPython/dpnp/pull/2619)
15
15
* Added `dpnp.exceptions` submodule to aggregate the generic exceptions used by dpnp [#2616](https://github.com/IntelPython/dpnp/pull/2616)
16
+
* Added implementation of `dpnp.scipy.special.erfcx`[#2596](https://github.com/IntelPython/dpnp/pull/2596)
16
17
17
18
### Changed
18
19
@@ -44,10 +45,10 @@ This release is compatible with NumPy 2.3.3.
44
45
* Added `timeout-minutes` property to GitHub jobs [#2526](https://github.com/IntelPython/dpnp/pull/2526)
45
46
* Added implementation of `dpnp.ndarray.data` and `dpnp.ndarray.data.ptr` attributes [#2521](https://github.com/IntelPython/dpnp/pull/2521)
* 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)
48
+
* Added implementation of `dpnp.scipy.linalg.lu_factor` (SciPy-compatible) [#2557](https://github.com/IntelPython/dpnp/pull/2557), [#2565](https://github.com/IntelPython/dpnp/pull/2565)
48
49
* Added implementation of `dpnp.piecewise`[#2550](https://github.com/IntelPython/dpnp/pull/2550)
49
-
* Added implementation of `dpnp.linalg.lu_solve` for 2D inputs (SciPy-compatible) [#2575](https://github.com/IntelPython/dpnp/pull/2575)
50
-
* Added implementation of `dpnp.special.erfc`[#2588](https://github.com/IntelPython/dpnp/pull/2588)
50
+
* Added implementation of `dpnp.scipy.linalg.lu_solve` for 2D inputs (SciPy-compatible) [#2575](https://github.com/IntelPython/dpnp/pull/2575)
51
+
* Added implementation of `dpnp.scipy.special.erfc`[#2588](https://github.com/IntelPython/dpnp/pull/2588)
51
52
* Added `dpnp.scipy` submodule to aggregate new SciPy-compatible functions from `linalg` and `special` namespaces [#2603](https://github.com/IntelPython/dpnp/pull/2603)
0 commit comments