Tiny fix in the definitition of SBlockTileType

This commit is contained in:
Qianfeng Zhang
2025-09-08 09:57:52 +00:00
parent 4b7aa8bb90
commit fd9de331c1

View File

@@ -247,7 +247,7 @@ struct BlockFmhaFwdSplitKVPipelineNWarpSShuffleQRKSVS
auto o_acc = OaccBlockTileType{};
// infer Sacc, S, P, M, L, Oacc type
using SBlockTileType = decltype(cast_tile<SMPLComputeDataType>(o_acc));
using SBlockTileType = decltype(cast_tile<SMPLComputeDataType>(s_acc));
using MLBlockTileType = decltype(block_tile_reduce<SMPLComputeDataType>(
SBlockTileType{}, sequence<1>{}, f_max, SMPLComputeDataType{0}));