From 95f673ecf7629259268af374686e2011d14e3212 Mon Sep 17 00:00:00 2001 From: Yuxin Wu Date: Tue, 21 Feb 2023 11:48:30 -0800 Subject: [PATCH] Update base_grouped.h (#832) --- include/cutlass/gemm/device/base_grouped.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/cutlass/gemm/device/base_grouped.h b/include/cutlass/gemm/device/base_grouped.h index 2e9398a5..1b51291d 100644 --- a/include/cutlass/gemm/device/base_grouped.h +++ b/include/cutlass/gemm/device/base_grouped.h @@ -342,7 +342,7 @@ public: // which are not assigned tiles still need to perform the work of iterating through // problem sizes to determine that they have no work to do. This competes for cycles // with those threadblocks that are assigned tiles to compute. - return min(total_tiles, occupancy_based_block_count); + return std::min(total_tiles, occupancy_based_block_count); }