Skip to content

Commit 7881b2e

Browse files
author
Matthew Brookhart
committed
remove unused variable
1 parent 876f7a8 commit 7881b2e

File tree

1 file changed

+0
-1
lines changed

1 file changed

+0
-1
lines changed

python/tvm/topi/cuda/scatter.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,6 @@ def gen_ir_2d(data, indices, updates, axis, out):
120120
ib.scope_attr(bx, "thread_extent", n)
121121
tx = te.thread_axis("threadIdx.x")
122122
ib.scope_attr(tx, "thread_extent", warp_size)
123-
i = bx
124123
with ib.for_range(0, ceil_div(c, warp_size), name="j") as j_:
125124
j = j_ * warp_size + tx
126125
with ib.if_scope(j < c):

0 commit comments

Comments
 (0)