Skip to content

Commit

Permalink
removes std min reference for hipRTC
Browse files Browse the repository at this point in the history
  • Loading branch information
cgmillette committed Dec 17, 2024
1 parent 61274d0 commit 45cf20e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion library/include/rocwmma/internal/io_layout.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -305,7 +305,7 @@ namespace rocwmma
// Smallest valid mma dim for mfma/wmma.
// Test MmaDim must not exceed BlockDim for valid layout.
static constexpr uint32_t MinMmaDim = 16u;
static constexpr uint32_t TestMmaDim = std::min(BlockDim, MmaDim);
static constexpr uint32_t TestMmaDim = min(BlockDim, MmaDim);

// For valid mma sizes, (BlockDim >= 16)
// Find minimum 16 byte load with MmaDim of 32 or 16
Expand Down

0 comments on commit 45cf20e

Please sign in to comment.