Skip to content

Commit 102736e

Browse files
committed
Remove meaningless comments
1 parent 29e0b41 commit 102736e

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

torch_cluster/triton/_kernels.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -99,8 +99,8 @@ def _nearest_kernel(
9999
offs_n = pid * BLOCK_N + tl.arange(0, BLOCK_N) # X indices.
100100
mask_x = offs_n < N # Valid x rows.
101101
if EVEN_N:
102-
tl.multiple_of(offs_n, 8) # Hint contiguous access.
103-
tl.max_contiguous(offs_n, 8) # Hint vectorization.
102+
tl.multiple_of(offs_n, 8)
103+
tl.max_contiguous(offs_n, 8)
104104

105105
best_dist = tl.full((BLOCK_N,), float('inf'), tl.float32) # Best dist.
106106
best_idx = tl.zeros((BLOCK_N,), dtype=tl.int32) # Best y index.

0 commit comments

Comments
 (0)