Skip to content

Commit b66ff61

Browse files
committed
fix lint error
1 parent d0045e0 commit b66ff61

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

topi/python/topi/cuda/nms.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -131,7 +131,8 @@ def get_valid_counts_ir(data, flag, idx, valid_count, out):
131131
base_idx = i * num_anchors * elem_length
132132
with ib.if_scope(flag[tid] > 0):
133133
with ib.for_range(0, elem_length) as k:
134-
out[base_idx + (idx[tid] - 1) * elem_length + k] = data[base_idx + j * elem_length + k]
134+
out[base_idx + (idx[tid] - 1) * elem_length + k] =\
135+
data[base_idx + j * elem_length + k]
135136
valid_count[i] = idx[i * num_anchors + num_anchors - 1]
136137

137138
return ib.get()

0 commit comments

Comments
 (0)