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
a35456a3
"git@developer.sourcefind.cn:OpenDAS/torch-scatter.git" did not exist on "50e05e1e5519272b5a961c586a57ea50239abad8"
Unverified
Commit
a35456a3
authored
Jun 12, 2023
by
Rostyslav Geyyer
Committed by
GitHub
Jun 12, 2023
Browse files
Fix arg order (#751)
parent
fc9f9756
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
2 deletions
+2
-2
client_example/02_gemm_add_add_fastgelu/gemm_add_fastgelu.cpp
...nt_example/02_gemm_add_add_fastgelu/gemm_add_fastgelu.cpp
+1
-1
client_example/02_gemm_add_add_fastgelu/gemm_fastgelu.cpp
client_example/02_gemm_add_add_fastgelu/gemm_fastgelu.cpp
+1
-1
No files found.
client_example/02_gemm_add_add_fastgelu/gemm_add_fastgelu.cpp
View file @
a35456a3
...
...
@@ -76,7 +76,7 @@ int main(int argc, char* argv[])
StrideA
=
std
::
stoi
(
argv
[
4
]);
StrideB
=
std
::
stoi
(
argv
[
5
]);
StrideD0
=
std
::
stoi
(
argv
[
6
]);
StrideE
=
std
::
stoi
(
argv
[
8
]);
StrideE
=
std
::
stoi
(
argv
[
7
]);
}
else
{
...
...
client_example/02_gemm_add_add_fastgelu/gemm_fastgelu.cpp
View file @
a35456a3
...
...
@@ -72,7 +72,7 @@ int main(int argc, char* argv[])
StrideA
=
std
::
stoi
(
argv
[
4
]);
StrideB
=
std
::
stoi
(
argv
[
5
]);
StrideE
=
std
::
stoi
(
argv
[
8
]);
StrideE
=
std
::
stoi
(
argv
[
6
]);
}
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