mirror of
https://github.com/NVIDIA/TensorRT-LLM.git
synced 2026-01-25 05:02:59 +08:00
fix
Signed-off-by: Xiwen Yu <13230610+VALLIS-NERIA@users.noreply.github.com>
This commit is contained in:
parent
2c287d58b0
commit
11d603bc84
@ -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,
|
||||
|
||||
Loading…
Reference in New Issue
Block a user