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
< GPG-PUB-KEY-INTEL-SW-PRODUCTS.PUB gpg --dearmor | sudo tee /usr/share/keyrings/oneapi-archive-keyring.gpg > /dev/null
70
70
rm GPG-PUB-KEY-INTEL-SW-PRODUCTS.PUB
71
71
echo "deb [signed-by=/usr/share/keyrings/oneapi-archive-keyring.gpg] https://apt.repos.intel.com/oneapi all main" | sudo tee /etc/apt/sources.list.d/oneAPI.list
< GPG-PUB-KEY-INTEL-SW-PRODUCTS.PUB gpg --dearmor | sudo tee /usr/share/keyrings/oneapi-archive-keyring.gpg > /dev/null
45
45
rm GPG-PUB-KEY-INTEL-SW-PRODUCTS.PUB
46
46
echo "deb [signed-by=/usr/share/keyrings/oneapi-archive-keyring.gpg] https://apt.repos.intel.com/oneapi all main" | sudo tee /etc/apt/sources.list.d/oneAPI.list
Copy file name to clipboardExpand all lines: CHANGELOG.md
+11Lines changed: 11 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -18,15 +18,26 @@ Also, that release drops support for Python 3.9, making Python 3.10 the minimum
18
18
* Added implementation of `dpnp.scipy.special.erfcx`[#2596](https://github.com/IntelPython/dpnp/pull/2596)
19
19
* Added implementation of `dpnp.scipy.special.erfinv` and `dpnp.scipy.special.erfcinv`[#2624](https://github.com/IntelPython/dpnp/pull/2624)
20
20
* Enabled support of Python 3.14 [#2631](https://github.com/IntelPython/dpnp/pull/2631)
21
+
* Added implementation of `dpnp.ndarray.tolist` method [#2652](https://github.com/IntelPython/dpnp/pull/2652)
22
+
* Added implementation of `dpnp.frexp`[#2635](https://github.com/IntelPython/dpnp/pull/2635)
23
+
* Added implementation of `dpnp.ndarray.tofile` method [#2635](https://github.com/IntelPython/dpnp/pull/2635)
24
+
* Extended `pre-commit` configuration with `pyupgrade`, `actionlint`, and `gersemi` hooks [#2658](https://github.com/IntelPython/dpnp/pull/2658)
25
+
* Added implementation of `dpnp.ndarray.tobytes` method [#2656](https://github.com/IntelPython/dpnp/pull/2656)
21
26
22
27
### Changed
23
28
24
29
* Silenced `pybind11` CMake message due to using compatibility mode for Python [#2614](https://github.com/IntelPython/dpnp/pull/2614)
25
30
* Changed the license from `BSD-2-Clause` to `BSD-3-Clause`[#2593](https://github.com/IntelPython/dpnp/pull/2593)
26
31
* Defined explicit versions range of the Python interpreter which is needed during the build [#2634](https://github.com/IntelPython/dpnp/pull/2634)
32
+
* Aligned documentation with NumPy and CuPy style by using short function names [#2633](https://github.com/IntelPython/dpnp/pull/2633)
33
+
* Added the missing positional-only and keyword-only parameter markers to bring the ufunc signatures into alignment with NumPy [#2660](https://github.com/IntelPython/dpnp/pull/2660)
34
+
* Redesigned `dpnp.modf` function to be a part of `ufunc` and `vm` pybind11 extensions [#2654](https://github.com/IntelPython/dpnp/pull/2654)
35
+
* Refactored `dpnp.fft` and `dpnp.random` submodules by removing wildcard imports and defining explicit public exports [#2649](https://github.com/IntelPython/dpnp/pull/2649)
27
36
28
37
### Deprecated
29
38
39
+
*`dpnp.asfarray` is deprecated. Use `dpnp.asarray` with an appropriate dtype instead [#2650](https://github.com/IntelPython/dpnp/pull/2650)
40
+
30
41
### Removed
31
42
32
43
* Dropped support for Python 3.9 [#2626](https://github.com/IntelPython/dpnp/pull/2626)
0 commit comments