Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion dpnp/dpnp_iface.py
Original file line number Diff line number Diff line change
Expand Up @@ -261,7 +261,7 @@ def check_supported_arrays_type(*arrays, scalar_type=False, all_scalars=False):

Parameters
----------
arrays : {dpnp.ndarray, usm_ndarray}
*arrays : {dpnp.ndarray, usm_ndarray}
Input arrays to check for supported types.
scalar_type : bool, optional
A scalar type is also considered as supported if flag is ``True``.
Expand Down
4 changes: 2 additions & 2 deletions dpnp/dpnp_iface_functional.py
Original file line number Diff line number Diff line change
Expand Up @@ -88,9 +88,9 @@ def apply_along_axis(func1d, axis, arr, *args, **kwargs):
Axis along which `arr` is sliced.
arr : {dpnp.ndarray, usm_ndarray} (Ni..., M, Nk...)
Input array.
args : any
*args : any
Additional arguments to `func1d`.
kwargs : any
**kwargs : any
Additional named arguments to `func1d`.

Returns
Expand Down
2 changes: 1 addition & 1 deletion dpnp/dpnp_utils/dpnp_utils_linearalgebra.py
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ def _compute_res_dtype(*arrays, dtype=None, out=None, casting="no"):

Parameters
----------
arrays : {dpnp.ndarray, usm_ndarray}
*arrays : {dpnp.ndarray, usm_ndarray}
Input arrays.
dtype : dtype
If not ``None`` and `out` is not defined, data type of the output array.
Expand Down
Loading