Skip to content

Commit

Permalink
fix erroneous correction
Browse files Browse the repository at this point in the history
  • Loading branch information
Titus-von-Koeller authored Feb 4, 2024
1 parent 7d81b19 commit 678f9f3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion csrc/kernels.cu
Original file line number Diff line number Diff line change
Expand Up @@ -2259,7 +2259,7 @@ template<typename T, int THREADS, int ITEMS_PER_THREAD, int TILE_ROWS, int TILE_
}

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

0 comments on commit 678f9f3

Please sign in to comment.