Signed-off-by: Xiwen Yu <13230610+VALLIS-NERIA@users.noreply.github.com>
This commit is contained in:
Xiwen Yu 2025-09-09 17:31:31 +08:00
parent 2c287d58b0
commit 11d603bc84

View File

@ -24,6 +24,7 @@
#include "cute/tensor.hpp"
#include "tensorrt_llm/common/assert.h"
#include "tensorrt_llm/common/tllmException.h"
namespace tensorrt_llm
{
@ -425,7 +426,7 @@ struct CutlassGemmConfig
, sm_version(sm_version)
, is_tma_warp_specialized(true)
{
assert(sm_version >= 100 && sm_version < 120 && "Expected SM 10x version");
TLLM_CHECK_WITH_INFO(sm_version >= 100 && sm_version < 120, "Expected SM 10x version");
}
CutlassGemmConfig(CutlassTileConfigSM120 tile_config_sm120, MainloopScheduleType mainloop_schedule,