Commit 5d42067e authored by Jing Zhang's avatar Jing Zhang
Browse files

format

parent 9fed0ade
......@@ -58,7 +58,7 @@ using DeviceGemmV2Instance =
static int NPerBlock = 32;
static int KPerBlock = 128;
#endif
// clang-format on
// clang-format on
using ReferenceGemmInstance = ck::tensor_operation::host::ReferenceGemm<ADataType,
BDataType,
......@@ -152,7 +152,7 @@ bool run_gemm(const ProblemType& problem_size, const ExecutionConfig& config)
DeviceMem b_k_n_device_buf(sizeof(BDataType) * b_k_n.mDesc.GetElementSpaceSize());
DeviceMem c_m_n_device_buf(sizeof(CDataType) * c_m_n_device_result.mDesc.GetElementSpaceSize());
//weight permute
// weight permute
#if 0
int N1 = NPerBlock;
int K1 = KPerBlock;
......@@ -182,7 +182,6 @@ bool run_gemm(const ProblemType& problem_size, const ExecutionConfig& config)
}
}
#else
for(int i = 0; i < N; i++)
{
......
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