Skip to content

Commit 678f9f3

Browse files
fix erroneous correction
1 parent 7d81b19 commit 678f9f3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

csrc/kernels.cu

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2259,7 +2259,7 @@ template<typename T, int THREADS, int ITEMS_PER_THREAD, int TILE_ROWS, int TILE_
22592259
}
22602260

22612261
// 4. store data via atomicMax
2262-
// to store col data efficiency we need to rewrite the smem blocked data [0, 1, 2, 3...] for t0
2262+
// to store col data efficiently we need to rewrite the smem blocked data [0, 1, 2, 3...] for t0
22632263
// into a striped arrangement: [0, 8, 16, 24, ..] for t0
22642264
__syncthreads();
22652265
BlockExchange(temp_storage.exchange).BlockedToStriped(local_col_absmax_values);

0 commit comments

Comments
 (0)