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