Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -1423,9 +1423,8 @@ def kernel(

# Global atomic max (accumulates across all tiles for final tensor amax)
# Since we compute absolute values, all values are non-negative
# Use wrapper function for atomic max operation
_ = cute.arch.atomic_max_float32(
ptr=mAmax.iterator.llvm_ptr, value=block_amax
_ = cute.arch.atomic_fmax(
mAmax.iterator, block_amax, sign_bit=False
)
#
# Async arrive accumulator buffer empty
Expand Down