* Copyright (c) 2025 Huawei Technologies Co., Ltd.
* This program is free software, you can redistribute it and/or modify it under the terms and conditions of
* CANN Open Software License Agreement Version 2.0 (the "License").
* Please refer to the License for details. You may not use this file except in compliance with the License.
* THIS SOFTWARE IS PROVIDED ON AN "AS IS" BASIS, WITHOUT WARRANTIES OF ANY KIND, EITHER EXPRESS OR IMPLIED,
* INCLUDING BUT NOT LIMITED TO NON-INFRINGEMENT, MERCHANTABILITY, OR FITNESS FOR A PARTICULAR PURPOSE.
* See LICENSE in the root of the software repository for the full text of the License.
*/
#ifndef FFT_BATCHED_MATMUL_KERNEL_HPP
#define FFT_BATCHED_MATMUL_KERNEL_HPP
#include "catlass/catlass.hpp"
#include "catlass/arch/resource.hpp"
#include "catlass/coord.hpp"
#include "catlass/gemm_coord.hpp"
#include "catlass/matrix_coord.hpp"
namespace Catlass::Gemm::Kernel {
template <
class BlockMmad_,
class BlockEpilogue_,
class BlockScheduler_
>
class FftBatchedMatmul {
public:
using BlockMmad = BlockMmad_;
using ArchTag = typename BlockMmad::ArchTag;
using L1TileShape = typename BlockMmad::L1TileShape;
using ElementA = typename BlockMmad::ElementA;
using LayoutA = typename BlockMmad::LayoutA;
using ElementB = typename BlockMmad::ElementB;
using LayoutB = typename BlockMmad::LayoutB;
using ElementC = typename BlockMmad::ElementC;
using LayoutC = typename BlockMmad::LayoutC;
using ElementAccumulator = typename BlockMmad::ElementAccumulator;
using BlockScheduler = BlockScheduler_;
struct Params {
uint32_t batchCount;
GemmCoord problemShape;
GM_ADDR ptrA;
LayoutA layoutA;
int64_t strideA;
GM_ADDR ptrB;
LayoutB layoutB;
int64_t strideB;
GM_ADDR ptrC;
LayoutC layoutC;
int64_t strideC;
CATLASS_HOST_DEVICE
Params()
{}
CATLASS_HOST_DEVICE
Params(uint32_t batchCount_, GemmCoord const &problemShape_,
GM_ADDR ptrA_, LayoutA layoutA_, int64_t strideA_,
GM_ADDR ptrB_, LayoutB layoutB_, int64_t strideB_,
GM_ADDR ptrC_, LayoutC layoutC_, int64_t strideC_)
: batchCount(batchCount_), problemShape(problemShape_),
ptrA(ptrA_), layoutA(layoutA_), strideA(strideA_),
ptrB(ptrB_), layoutB(layoutB_), strideB(strideB_),
ptrC(ptrC_), layoutC(layoutC_), strideC(strideC_) {}
};
struct Arguments {
uint32_t batchCount;
GemmCoord problemShape;
GM_ADDR ptrA;
GM_ADDR ptrB;
GM_ADDR ptrC;
};
static bool CanImplement(const Arguments &args)
{
return true;
}
static size_t GetWorkspaceSize(const Arguments &args)
{
return 0;
}
static Params ToUnderlyingArguments(const Arguments &args, uint8_t *workspace)
{
GemmCoord problemShape = args.problemShape;
uint32_t m = problemShape.m();
uint32_t n = problemShape.n();
uint32_t k = problemShape.k();
int64_t strideA = problemShape.m() * problemShape.k();
int64_t strideB = problemShape.k() * problemShape.n();
int64_t strideC = problemShape.m() * problemShape.n();
LayoutA layoutA{args.problemShape.m(), args.problemShape.k()};
LayoutB layoutB{args.problemShape.k(), args.problemShape.n()};
LayoutC layoutC{args.problemShape.m(), args.problemShape.n()};
Params params{args.batchCount,
problemShape,
args.ptrA,
layoutA,
strideA,
args.ptrB,
layoutB,
strideB,
args.ptrC,
layoutC,
strideC};
return params;
}
CATLASS_DEVICE
FftBatchedMatmul() {}
template <int32_t CORE_TYPE = g_coreType>
CATLASS_DEVICE
void operator()(Params const ¶ms, Arch::Resource<ArchTag> resource);
template <>
CATLASS_DEVICE
void operator()<AscendC::AIC>(Params const ¶ms, Arch::Resource<ArchTag> resource) {
BlockScheduler matmulBlockScheduler(params.problemShape, MakeCoord(L1TileShape::M, L1TileShape::N));
uint32_t coreLoops = params.batchCount * matmulBlockScheduler.GetCoreLoops();
BlockMmad blockMmad(resource);
AscendC::GlobalTensor<ElementA> gmA;
gmA.SetGlobalBuffer((__gm__ ElementA *)params.ptrA);
AscendC::GlobalTensor<ElementB> gmB;
gmB.SetGlobalBuffer((__gm__ ElementB *)params.ptrB);
AscendC::GlobalTensor<ElementC> gmC;
gmC.SetGlobalBuffer((__gm__ ElementC *)params.ptrC);
for (uint32_t loopIdx = AscendC::GetBlockIdx(); loopIdx < coreLoops; loopIdx += AscendC::GetBlockNum()) {
uint32_t batchIdx = matmulBlockScheduler.GetBatchIdx(loopIdx);
GemmCoord blockCoord = matmulBlockScheduler.GetBlockCoord(loopIdx);
GemmCoord actualBlockShape = matmulBlockScheduler.GetActualBlockShape(blockCoord);
int64_t batchOffsetA = batchIdx * params.strideA;
int64_t batchOffsetB = batchIdx * params.strideB;
int64_t batchOffsetC = batchIdx * params.strideC;
MatrixCoord offsetA{blockCoord.m() * L1TileShape::M, blockCoord.k() * L1TileShape::K};
MatrixCoord offsetB{blockCoord.k() * L1TileShape::K, blockCoord.n() * L1TileShape::N};
MatrixCoord offsetC{blockCoord.m() * L1TileShape::M, blockCoord.n() * L1TileShape::N};
int64_t gmOffsetA = params.layoutA.GetOffset(offsetA);
int64_t gmOffsetB = params.layoutB.GetOffset(offsetB);
int64_t gmOffsetC = params.layoutC.GetOffset(offsetC);
blockMmad(
gmA[batchOffsetA + gmOffsetA], params.layoutA,
gmB[batchOffsetB + gmOffsetB], params.layoutB,
gmC[batchOffsetC + gmOffsetC], params.layoutC,
actualBlockShape);
}
AscendC::PipeBarrier<PIPE_ALL>();
}
template <>
CATLASS_DEVICE
void operator()<AscendC::AIV>(Params const ¶ms, Arch::Resource<ArchTag> resource) {}
};
}
#endif