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
ea6b9481
Commit
ea6b9481
authored
Jan 28, 2022
by
rocking
Browse files
Fix stride error
parent
2b5ec663
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
device_operation/include/device_gemm_xdl_c_shuffle_bias.hpp
device_operation/include/device_gemm_xdl_c_shuffle_bias.hpp
+2
-2
No files found.
device_operation/include/device_gemm_xdl_c_shuffle_bias.hpp
View file @
ea6b9481
...
...
@@ -132,8 +132,8 @@ struct DeviceGemmXdl_C_Shuffle_Bias
static
auto
MakeC0GridDescriptor_M_N
(
index_t
M
,
index_t
N
)
{
// TODO - bias with stride (I
1
, I
0
)
return
make_naive_tensor_descriptor
(
make_tuple
(
M
,
N
),
make_tuple
(
I
0
,
I
1
));
// TODO - bias with stride (I
0
, I
1
)
return
make_naive_tensor_descriptor
(
make_tuple
(
M
,
N
),
make_tuple
(
I
1
,
I
0
));
}
using
AGridDesc_K0_M_K1
=
decltype
(
MakeAGridDescriptor_K0_M_K1
(
1
,
1
,
1
));
...
...
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