Skip to content

Commit

Permalink
fix typo (#176)
Browse files Browse the repository at this point in the history
  • Loading branch information
t4c1 authored Dec 17, 2024
1 parent 0f258ae commit 175f05b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion examples/35_gemm_softmax/softmax_epilogue.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -264,7 +264,7 @@ class SoftmaxEpilogue {
syncthreads();

// assumption for reductions: size<0>(sC) == block size
assert(size<0>(sC) == BlockDimX() * BlockDimy() * BlockDimZ());
assert(size<0>(sC) == BlockDimX() * BlockDimY() * BlockDimZ());

ElementAccumulator max = std::numeric_limits<ElementAccumulator>::lowest();
CUTLASS_PRAGMA_UNROLL
Expand Down

0 comments on commit 175f05b

Please sign in to comment.