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_ROCM
Commits
1fef9106
Commit
1fef9106
authored
Dec 23, 2024
by
Po Yen Chen
Browse files
Fix wrong vlayout assumption in example
parent
4633f073
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
example/ck_tile/01_fmha/fmha_fwd.cpp
example/ck_tile/01_fmha/fmha_fwd.cpp
+2
-2
No files found.
example/ck_tile/01_fmha/fmha_fwd.cpp
View file @
1fef9106
...
...
@@ -764,9 +764,9 @@ bool run(const ck_tile::ArgParser& arg_parser)
if
(
mode
==
mode_enum
::
group
&&
0
<
page_block_size
)
{
if
(
!
is_v_rowmajor
)
if
(
is_v_rowmajor
)
{
std
::
cerr
<<
"make sure input layout is correct: -vlayout=
r
"
<<
std
::
endl
;
std
::
cerr
<<
"make sure input layout is correct: -vlayout=
c
"
<<
std
::
endl
;
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