Skip to content

Commit 16c0732

Browse files
Fix lu_factor docstring formatting
1 parent d975818 commit 16c0732

File tree

1 file changed

+6
-3
lines changed

1 file changed

+6
-3
lines changed

dpnp/linalg/dpnp_iface_linalg.py

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -919,19 +919,22 @@ def lu_factor(a, overwrite_a=False, check_finite=True):
919919
a : (M, N) {dpnp.ndarray, usm_ndarray}
920920
Input array to decompose.
921921
overwrite_a : {None, bool}, optional
922-
Whether to overwrite data in `a` (may increase performance)
922+
Whether to overwrite data in `a` (may increase performance).
923+
923924
Default: ``False``.
924925
check_finite : {None, bool}, optional
925926
Whether to check that the input matrix contains only finite numbers.
926927
Disabling may give a performance gain, but may result in problems
927928
(crashes, non-termination) if the inputs do contain infinities or NaNs.
928929
930+
Default: ``True``.
931+
929932
Returns
930933
-------
931-
lu :(M, N) dpnp.ndarray
934+
lu : (M, N) dpnp.ndarray
932935
Matrix containing U in its upper triangle, and L in its lower triangle.
933936
The unit diagonal elements of L are not stored.
934-
piv (K, ): dpnp.ndarray
937+
piv : (K, ) dpnp.ndarray
935938
Pivot indices representing the permutation matrix P:
936939
row i of matrix was interchanged with row piv[i].
937940
``K = min(M, N)``.

0 commit comments

Comments
 (0)