Skip to content

Commit

Permalink
fix sort docstring
Browse files Browse the repository at this point in the history
  • Loading branch information
mbrookhart committed Dec 16, 2020
1 parent b20e671 commit d67cfdd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions python/tvm/topi/cuda/sort.py
Original file line number Diff line number Diff line change
Expand Up @@ -317,8 +317,8 @@ def argsort_nms_thrust(data, valid_count, axis=-1, is_ascend=1, dtype="float32")


def sort(data, axis=-1, is_ascend=1):
"""Performs sorting along the given axis and returns an array of indicies
having same shape as an input array that index data in sorted order.
"""Performs sorting along the given axis and returns an array of
sorted values with teh same shape as the input data.
Parameters
----------
Expand Down

0 comments on commit d67cfdd

Please sign in to comment.