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
f852625e
Commit
f852625e
authored
Jun 07, 2023
by
Rostyslav Geyyer
Browse files
Fix argument order
parent
b3cf9221
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
client_example/02_gemm_add_add_fastgelu/gemm_add_fastgelu_generic.cpp
...le/02_gemm_add_add_fastgelu/gemm_add_fastgelu_generic.cpp
+2
-2
No files found.
client_example/02_gemm_add_add_fastgelu/gemm_add_fastgelu_generic.cpp
View file @
f852625e
...
@@ -67,7 +67,7 @@ int main(int argc, char* argv[])
...
@@ -67,7 +67,7 @@ int main(int argc, char* argv[])
{
{
// use default case
// use default case
}
}
else
if
(
argc
==
9
)
else
if
(
argc
==
8
)
{
{
M
=
std
::
stoi
(
argv
[
1
]);
M
=
std
::
stoi
(
argv
[
1
]);
N
=
std
::
stoi
(
argv
[
2
]);
N
=
std
::
stoi
(
argv
[
2
]);
...
@@ -76,7 +76,7 @@ int main(int argc, char* argv[])
...
@@ -76,7 +76,7 @@ int main(int argc, char* argv[])
StrideA
=
std
::
stoi
(
argv
[
4
]);
StrideA
=
std
::
stoi
(
argv
[
4
]);
StrideB
=
std
::
stoi
(
argv
[
5
]);
StrideB
=
std
::
stoi
(
argv
[
5
]);
StrideD0
=
std
::
stoi
(
argv
[
6
]);
StrideD0
=
std
::
stoi
(
argv
[
6
]);
StrideE
=
std
::
stoi
(
argv
[
8
]);
StrideE
=
std
::
stoi
(
argv
[
7
]);
}
}
else
else
{
{
...
...
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