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
Optimize _batched_lu_factor for dpnp.linalg.det/slogdet (#2572)
This PR suggests optimizing and simplifying `_batched_lu_factor` logic
by replacing per-iteration allocations with a single preallocated buffer
and batch-axis views which improves performance in `dpnp.linalg.det` and
`dpnp.linalg.slogdet`
Copy file name to clipboardExpand all lines: CHANGELOG.md
+1Lines changed: 1 addition & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -42,6 +42,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
42
42
* Improved performance of `dpnp.isclose` function by implementing a dedicated kernel for scalar `rtol` and `atol` arguments [#2540](https://github.com/IntelPython/dpnp/pull/2540)
43
43
* Extended `dpnp.pad` to support `pad_width` keyword as a dictionary [#2535](https://github.com/IntelPython/dpnp/pull/2535)
44
44
* Redesigned `dpnp.erf` function through pybind11 extension of OneMKL call or dedicated kernel in `ufunc` namespace [#2551](https://github.com/IntelPython/dpnp/pull/2551)
45
+
* Improved performance of batched implementation of `dpnp.linalg.det` and `dpnp.linalg.slogdet`[#2572](https://github.com/IntelPython/dpnp/pull/2572)
0 commit comments