Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
gaoqiong
composable_kernel
Commits
ceebf306
"...composable_kernel.git" did not exist on "5e6cca6f1e2a603a7f122ee628b0ab88adb358ac"
Commit
ceebf306
authored
May 05, 2023
by
Po-Yen, Chen
Browse files
Unify MakeArgument() usage
parent
21ed2ced
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
8 additions
and
2 deletions
+8
-2
example/01_gemm/run_gemm_example.inc
example/01_gemm/run_gemm_example.inc
+4
-1
include/ck/tensor_operation/gpu/device/impl/device_gemm_xdl_cshuffle.hpp
...or_operation/gpu/device/impl/device_gemm_xdl_cshuffle.hpp
+4
-1
No files found.
example/01_gemm/run_gemm_example.inc
View file @
ceebf306
...
...
@@ -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
))
{
...
...
include/ck/tensor_operation/gpu/device/impl/device_gemm_xdl_cshuffle.hpp
View file @
ceebf306
...
...
@@ -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
,
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment