Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 7 additions & 1 deletion cpp/tensorrt_llm/thop/fp8BlockScaleMoe.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -417,7 +417,13 @@ class FP8BlockScaleMoeRunner : public torch::CustomClassHolder

public:
explicit FP8BlockScaleMoeRunner()
: mSupportedTileN{8, 16, 32, 64, 128}
// tileN=8 is excluded: every DeepSeek-FP8 GEMM2 cubin at that tile faults with
// cudaErrorIllegalAddress in its epilogue store on sm100f/sm103, so the tile size is
// broken rather than a single cubin (https://nvbugs/6525059). Dropping it here rather
// than in TrtllmGenBatchedGemmRunner::skipQuirks both raises the fallback clamp floor
// below and avoids constructing a tileN=8 runner, which would throw on an empty
// passing-config list.
: mSupportedTileN{16, 32, 64, 128}
Comment thread
coderabbitai[bot] marked this conversation as resolved.
{
for (int tileN : mSupportedTileN)
{
Expand Down
Loading