"docs/vscode:/vscode.git/clone" did not exist on "77bfb562414e93f35b5d6cea8431d5163fe46191"
Commit a55440c0 authored by Bartlomiej Wroblewski's avatar Bartlomiej Wroblewski
Browse files

Review: Rename DppInstrRunner to DppLanegroupGemm

parent 792b62dd
......@@ -59,14 +59,14 @@ struct dpp_type<DppInstr::dpp8_f16_32x8x2>
template <index_t MPerDpp, index_t NPerDpp, class ADataType, class BDataType, class CDataType>
__device__ void run(const ADataType& a, const BDataType& b, CDataType& reg_c) const
{
dpp8::DppInstrRunner<m_per_thread,
n_per_thread,
k_per_dpp,
BaseType,
ADataType,
BDataType,
CDataType,
share_a>{}
dpp8::DppLanegroupGemm<m_per_thread,
n_per_thread,
k_per_dpp,
BaseType,
ADataType,
BDataType,
CDataType,
share_a>{}
.Run(a, b, reg_c);
}
};
......@@ -89,14 +89,14 @@ struct dpp_type<DppInstr::dpp8_f16_8x32x2>
template <index_t MPerDpp, index_t NPerDpp, class ADataType, class BDataType, class CDataType>
__device__ void run(const ADataType& a, const BDataType& b, CDataType& reg_c) const
{
dpp8::DppInstrRunner<m_per_thread,
n_per_thread,
k_per_dpp,
BaseType,
ADataType,
BDataType,
CDataType,
share_a>{}
dpp8::DppLanegroupGemm<m_per_thread,
n_per_thread,
k_per_dpp,
BaseType,
ADataType,
BDataType,
CDataType,
share_a>{}
.Run(a, b, reg_c);
}
};
......@@ -119,14 +119,14 @@ struct dpp_type<DppInstr::dpp8_f16_16x16x2>
template <index_t MPerDpp, index_t NPerDpp, class ADataType, class BDataType, class CDataType>
__device__ void run(const ADataType& a, const BDataType& b, CDataType& reg_c) const
{
dpp8::DppInstrRunner<m_per_thread,
n_per_thread,
k_per_dpp,
BaseType,
ADataType,
BDataType,
CDataType,
share_a>{}
dpp8::DppLanegroupGemm<m_per_thread,
n_per_thread,
k_per_dpp,
BaseType,
ADataType,
BDataType,
CDataType,
share_a>{}
.Run(a, b, reg_c);
}
};
......
......@@ -33,7 +33,7 @@ template <index_t MPerThread,
class BVecDataType,
class CVecDataType,
bool ShareA>
struct DppInstrRunner
struct DppLanegroupGemm
{
using datatypes_conf = dpp_datatypes<BaseInputType>;
using ADataType = typename datatypes_conf::a_dtype;
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment