mirror of
https://github.com/ROCm/composable_kernel.git
synced 2026-05-02 20:51:23 +00:00
* chore(copyright): update copyright header for codegen directory * chore(copyright): update copyright header for example directory
94 lines
3.5 KiB
C++
94 lines
3.5 KiB
C++
// Copyright (c) Advanced Micro Devices, Inc., or its affiliates.
|
||
// SPDX-License-Identifier: MIT
|
||
|
||
#include "common.hpp"
|
||
|
||
#include "ck/tensor_operation/gpu/device/impl/device_fpAintB_gemm_wmma.hpp"
|
||
|
||
// Implementation follows the paper:
|
||
// Kim, Young Jin, Rawn Henry, Raffy Fahim, and Hany Hassan Awadalla. “Who Says Elephants Can’t Run:
|
||
// Bringing Large Scale MoE Models into Cloud Scale Production.” arXiv, November 17, 2022.
|
||
// https://doi.org/10.48550/arXiv.2211.10017. Assume weight (Matrix B) is add preprocess to
|
||
// unsigned.
|
||
|
||
// The DeviceOp is CDataType = ADataType * Dequant(BDataType) * ScaleDataType
|
||
// The HostRef is CDataType = ADataType * Dequant(QuantDataType) * ScaleDataType
|
||
|
||
// TODO: Current implementation consume more VGPR than expected.
|
||
|
||
using ADataType = ck::half_t;
|
||
using QuantDataType = int8_t;
|
||
using BDataType = uint8_t;
|
||
using ScaleDataType = ck::half_t;
|
||
using AccDataType = float;
|
||
using CShuffleDataType = float;
|
||
using CDataType = ck::half_t;
|
||
|
||
using ALayout = Row;
|
||
using BLayout = Col;
|
||
using CLayout = Row;
|
||
|
||
using AElementOp = PassThrough;
|
||
using BElementOp = PassThrough;
|
||
using CElementOp = PassThrough;
|
||
|
||
static constexpr auto GemmDefault = ck::tensor_operation::device::GemmSpecialization::MNKPadding;
|
||
|
||
// clang-format off
|
||
using DeviceGemmInstance = ck::tensor_operation::device::DeviceFpAintBGemm_Wmma_CShuffle
|
||
< ALayout,
|
||
BLayout,
|
||
CLayout,
|
||
ADataType,
|
||
BDataType,
|
||
ScaleDataType,
|
||
CDataType,
|
||
AccDataType,
|
||
CShuffleDataType,
|
||
AElementOp,
|
||
BElementOp,
|
||
CElementOp,
|
||
GemmDefault,
|
||
1, // Prefetch stage
|
||
128, // BlockSize
|
||
64, // MPerBlock
|
||
128, // NPerBlock
|
||
64, // KPerBlock
|
||
8, // K1
|
||
16, // MPerWmma
|
||
16, // NPerWmma
|
||
2, // M-Repeat // M-PerWmma / M-Repeat = M-Wave
|
||
4, // N-Repeat // N-PerWmma / N-Repeat = N-Wave
|
||
S<4, 32, 1>,
|
||
S<1, 0, 2>,
|
||
S<1, 0, 2>,
|
||
2,
|
||
8,
|
||
8,
|
||
true,
|
||
S<4, 32, 1>,
|
||
S<1, 0, 2>,
|
||
S<1, 0, 2>,
|
||
2,
|
||
8,
|
||
8,
|
||
true,
|
||
1, // C shuffle (M Repeat) Per store
|
||
1, // C shuffle (N Repeat) Per store
|
||
S<1, 32, 1, 4>,
|
||
8>;
|
||
// clang-format on
|
||
|
||
using ReferenceGemmInstance = ck::tensor_operation::host::ReferencefpAintBGemm<ADataType,
|
||
QuantDataType,
|
||
ScaleDataType,
|
||
CDataType,
|
||
AccDataType,
|
||
AElementOp,
|
||
BElementOp,
|
||
CElementOp>;
|
||
|
||
#include "run_gemm_example.inc"
|
||
|
||
int main(int argc, char* argv[]) { return !run_gemm_example(argc, argv); }
|