diff --git a/doc/conf.py b/doc/conf.py index cfa4c13dfbb..c2a475e09da 100644 --- a/doc/conf.py +++ b/doc/conf.py @@ -218,9 +218,10 @@ def _can_document_member(member, *args, **kwargs): intersphinx_mapping = { "python": ("https://docs.python.org/3/", None), - "numpy": ("https://docs.scipy.org/doc/numpy/", None), + "numpy": ("https://numpy.org/doc/stable/", None), "scipy": ("https://docs.scipy.org/doc/scipy/reference/", None), "dpctl": ("https://intelpython.github.io/dpctl/latest/", None), + "cupy": ("https://docs.cupy.dev/en/stable/", None), } # If true, `todo` and `todoList` produce output, else they produce nothing. diff --git a/doc/known_words.txt b/doc/known_words.txt index 128bcd759d0..a663832ea16 100644 --- a/doc/known_words.txt +++ b/doc/known_words.txt @@ -1,11 +1,13 @@ al ary backend +bandlimited bitwise boolean broadcastable broadcasted byteorder +cardinalis Cholesky combinatorially conda @@ -34,11 +36,16 @@ fs getter Golub Hadamard +histogrammed Hypergeometric +kwargs +iaxis iinfo Infs intp +ints iterable +Lanczos Lomax Mersenne meshgrid @@ -47,6 +54,7 @@ multinomial multivalued NaN NaT +nd ndarray ndarrays ndim @@ -54,6 +62,9 @@ Nj Nk normed nuc +numpy +nx +ny Nyquist oneAPI ord @@ -62,12 +73,15 @@ Penrose Polyutils pre prepend +prepended prepending representable +resampling runtimes scikit signbit signum +sinc subarray subarrays subclasses @@ -84,7 +98,9 @@ ufunc ufuncs Unary unscaled +unstacked unicode +Upcasting usm Vandermonde vectorized diff --git a/dpnp/dpnp_iface_histograms.py b/dpnp/dpnp_iface_histograms.py index d66ed18ae40..08a1de3990b 100644 --- a/dpnp/dpnp_iface_histograms.py +++ b/dpnp/dpnp_iface_histograms.py @@ -321,7 +321,7 @@ def bincount(x, weights=None, minlength=None): Parameters ---------- x : {dpnp.ndarray, usm_ndarray} - Input 1-dimensional array with nonnegative integer values. + Input 1-dimensional array with non-negative integer values. weights : {None, dpnp.ndarray, usm_ndarray}, optional Weights, array of the same shape as `x`. Default: ``None``