don't throw in ctor

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

View File

@ -425,7 +425,7 @@ struct CutlassGemmConfig
, sm_version(sm_version)
, is_tma_warp_specialized(true)
{
TLLM_CHECK_WITH_INFO(sm_version >= 100 && sm_version < 120 && "Expected SM 10x version");
assert(sm_version >= 100 && sm_version < 120 && "Expected SM 10x version");
}
CutlassGemmConfig(CutlassTileConfigSM120 tile_config_sm120, MainloopScheduleType mainloop_schedule,