Fix MakeArgument (#1284)

[ROCm/composable_kernel commit: a0ae1c6133]
This commit is contained in:
Adam Osewski
2024-05-09 18:42:41 +02:00
committed by GitHub
parent 3ede1f58e6
commit 675a16e3b8
2 changed files with 4 additions and 3 deletions

View File

@@ -92,9 +92,10 @@ bool run_grouped_gemm(const ProblemSize& problem_size, const ExecutionConfig& co
auto group_count = problem_size.group_count;
using KernelArguments = ck::tensor_operation::device::GroupedGemmTileLoopKernelArguments<NumDs>;
using GemmDesc = ck::tensor_operation::device::GemmDesc;
// GEMM shape
std::vector<ck::tensor_operation::device::GemmDesc> gemm_descs;
std::vector<GemmDesc> gemm_descs;
std::vector<KernelArguments> ggemm_kargs;
std::vector<void*> p_Cs;
std::vector<const void*> p_As;