From c6c12fd3b6a3f201eed416d3db3435236b63bd08 Mon Sep 17 00:00:00 2001 From: Michael Varvarin <55709728+MichaelVarvarin@users.noreply.github.com> Date: Sat, 10 Aug 2024 11:17:45 +0300 Subject: [PATCH] Rename maxActiveBlocks trait --- include/alpaka/kernel/Traits.hpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/include/alpaka/kernel/Traits.hpp b/include/alpaka/kernel/Traits.hpp index 2501e8b1713..f6186a82e1f 100644 --- a/include/alpaka/kernel/Traits.hpp +++ b/include/alpaka/kernel/Traits.hpp @@ -45,7 +45,7 @@ namespace alpaka //! Get maximum requested blocks for cooperative kernel trait. template - struct maxActiveBlocks; + struct MaxActiveBlocks; //! The trait for getting the size of the block shared dynamic memory of a kernel. //! @@ -247,7 +247,7 @@ namespace alpaka alpaka::Vec const& threadElemExtent, TArgs const&... args) -> int { - return trait::maxActiveBlocks::getMaxActiveBlocks( + return trait::MaxActiveBlocks::getMaxActiveBlocks( kernelFnObj, device, blockThreadExtent, @@ -284,7 +284,7 @@ namespace alpaka { auto const v_blockThreadExtent = Vec, TIdx>(blockThreadExtent); auto const v_threadElemExtent = Vec, TIdx>(threadElemExtent); - return trait::maxActiveBlocks, TIdx, TArgs...>::getMaxActiveBlocks( + return trait::MaxActiveBlocks, TIdx, TArgs...>::getMaxActiveBlocks( kernelFnObj, device, v_blockThreadExtent,