Skip to content
This repository has been archived by the owner on Nov 17, 2023. It is now read-only.

Commit

Permalink
Rebase
Browse files Browse the repository at this point in the history
  • Loading branch information
ckt624 committed Aug 14, 2019
1 parent 37e2ade commit 788e8ce
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions python/mxnet/symbol/numpy/_symbol.py
Original file line number Diff line number Diff line change
Expand Up @@ -1064,7 +1064,6 @@ def tensordot(a, b, axes=2):


@set_module('mxnet.symbol.numpy')
<<<<<<< HEAD
def linspace(start, stop, num=50, endpoint=True, retstep=False, dtype=None, axis=0, ctx=None): # pylint: disable=too-many-arguments
r"""
Return evenly spaced numbers over a specified interval.
Expand Down Expand Up @@ -1311,7 +1310,9 @@ def split(ary, indices_or_sections, axis=0):
raise ValueError('indices_or_sections must either int or tuple of ints')
ret = _npi.split(ary, indices, axis, False, sections)
return ret
=======


@set_module('mxnet.symbol.numpy')
def inner(a, b):
r"""
inner(a, b)
Expand Down Expand Up @@ -1450,7 +1451,6 @@ def vdot(a, b):
30
"""
return tensordot(a.flatten(), b.flatten(), 1)
>>>>>>> 80101d60d... Implements inner, outer, vdot.


_set_np_symbol_class(_Symbol)

0 comments on commit 788e8ce

Please sign in to comment.