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
c994d5b0
Commit
c994d5b0
authored
Aug 30, 2023
by
Jing Zhang
Browse files
clean
parent
cbee3a5b
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
5 deletions
+3
-5
include/ck/tensor_operation/gpu/device/impl/device_grouped_gemm_xdl.hpp
...sor_operation/gpu/device/impl/device_grouped_gemm_xdl.hpp
+3
-5
No files found.
include/ck/tensor_operation/gpu/device/impl/device_grouped_gemm_xdl.hpp
View file @
c994d5b0
...
@@ -617,7 +617,7 @@ struct DeviceGroupedGemm_Xdl : public DeviceGroupedGemm<ALayout,
...
@@ -617,7 +617,7 @@ struct DeviceGroupedGemm_Xdl : public DeviceGroupedGemm<ALayout,
// If we use padding we do not support vector loads for dimensions not divisible by vector
// If we use padding we do not support vector loads for dimensions not divisible by vector
// load size.
// load size.
//
if constexpr(GemmSpec != GemmSpecialization::Default)
if
constexpr
(
GemmSpec
!=
GemmSpecialization
::
Default
)
{
{
// [A|B]BlockTransferSrcVectorDim value define dimension in the block {K0,M,K1} layout,
// [A|B]BlockTransferSrcVectorDim value define dimension in the block {K0,M,K1} layout,
// thus we have to adapt it to the {M,K} or {N,K} layout.
// thus we have to adapt it to the {M,K} or {N,K} layout.
...
@@ -630,12 +630,10 @@ struct DeviceGroupedGemm_Xdl : public DeviceGroupedGemm<ALayout,
...
@@ -630,12 +630,10 @@ struct DeviceGroupedGemm_Xdl : public DeviceGroupedGemm<ALayout,
const
auto
b_vector_dim
=
arg
.
b_mtx_nraw_kraw_
[
i
].
At
(
Number
<
b_raw_vector_dim
>
{});
const
auto
b_vector_dim
=
arg
.
b_mtx_nraw_kraw_
[
i
].
At
(
Number
<
b_raw_vector_dim
>
{});
if
(
a_vector_dim
%
ABlockTransferSrcScalarPerVector
!=
0
)
if
(
a_vector_dim
%
ABlockTransferSrcScalarPerVector
!=
0
)
;
return
false
;
return
false
;
if
(
b_vector_dim
%
BBlockTransferSrcScalarPerVector
!=
0
)
if
(
b_vector_dim
%
BBlockTransferSrcScalarPerVector
!=
0
)
;
return
false
;
return
false
;
}
}
}
}
...
...
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