"...composable_kernel.git" did not exist on "5e6cca6f1e2a603a7f122ee628b0ab88adb358ac"
Commit ceebf306 authored by Po-Yen, Chen's avatar Po-Yen, Chen
Browse files

Unify MakeArgument() usage

parent 21ed2ced
......@@ -89,7 +89,10 @@ bool run_gemm(const ProblemSize& problem_size, const ExecutionConfig& config)
K,
StrideA,
StrideB,
StrideC);
StrideC,
a_element_op,
b_element_op,
c_element_op);
if(!gemm.IsSupportedArgument(argument))
{
......
......@@ -207,7 +207,10 @@ struct DeviceGemm_Xdl_CShuffle : public DeviceGemm<ALayout,
index_t K,
index_t StrideA,
index_t StrideB,
index_t StrideC)
index_t StrideC,
AElementwiseOperation,
BElementwiseOperation,
CElementwiseOperation)
{
return Argument{p_a,
p_b,
......
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