Skip to content

Commit

Permalink
fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
mbrookhart committed Dec 15, 2020
1 parent f2af723 commit 6b8d79a
Showing 1 changed file with 0 additions and 4 deletions.
4 changes: 0 additions & 4 deletions python/tvm/topi/cuda/sort.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,10 +26,6 @@
from .. import tag


def ceil_div(a, b):
return (a + b - 1) // b


def swap(arr, axis):
""" swap arr[axis] and arr[-1] """
return arr[:axis] + [arr[-1]] + arr[axis + 1 : -1] + [arr[axis]]
Expand Down

0 comments on commit 6b8d79a

Please sign in to comment.