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
``maximum``, ``minimum``, ``trunc``, ``log2`` functions, as well as allow
15
+
integer outputs for certain functions when integr arguments are passed.
16
+
We also add floor division (``//``) and full dual bitwise (logical) AND, OR, XOR, NOT
17
+
support for integer (bool) arrays.
18
+
19
+
* Extended linear algebra functionality, offering generalised matrix multiplication
20
+
for arrays of arbitrary dimension via ``tensordot`` and an improved ``matmul``. In addition,
21
+
introduced ``vecdot``, ``diagonal`` and ``outer``, as well as useful indexing and associated functions such as ``take``, ``take_along_axis``, ``meshgrid`` and ``broadcast_to``.
22
+
23
+
* Added many ufuncs and methods (around 60) to ``NDArray`` to bring the library into further alignment with the array-api. Introduced a chunkwise lazyudf paradigm which is very powerful in order to implement ``clip`` and ``logaddexp``.
24
+
25
+
* Fixed a subtle but important bug for ``expand_dims`` (PR #479, PR #483) relating to reference counting for views.
26
+
7
27
## Changes from 3.7.2 to 3.8.0
8
28
9
29
* C-Blosc2 internal library updated to latest 2.21.2.
0 commit comments