Skip to content

Commit 026c39c

Browse files
committed
remove leftovers from merge process
1 parent 4a49821 commit 026c39c

File tree

1 file changed

+0
-18
lines changed

1 file changed

+0
-18
lines changed

dpnp/dpnp_iface_mathematical.py

Lines changed: 0 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,6 @@
9191
"clip",
9292
"conj",
9393
"conjugate",
94-
"convolve",
9594
"copysign",
9695
"cross",
9796
"cumprod",
@@ -793,23 +792,6 @@ def clip(a, /, min=None, max=None, *, out=None, order="K", **kwargs):
793792
conj = conjugate
794793

795794

796-
def convolve(a, v, mode="full"):
797-
"""
798-
Returns the discrete, linear convolution of two one-dimensional sequences.
799-
800-
For full documentation refer to :obj:`numpy.convolve`.
801-
802-
Examples
803-
--------
804-
>>> ca = dpnp.convolve([1, 2, 3], [0, 1, 0.5])
805-
>>> print(ca)
806-
[0. , 1. , 2.5, 4. , 1.5]
807-
808-
"""
809-
810-
return call_origin(numpy.convolve, a=a, v=v, mode=mode)
811-
812-
813795
_COPYSIGN_DOCSTRING = """
814796
Composes a floating-point value with the magnitude of `x1_i` and the sign of
815797
`x2_i` for each element of input arrays `x1` and `x2`.

0 commit comments

Comments
 (0)