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
MIGraphX
Commits
48cf58f6
Commit
48cf58f6
authored
Jul 01, 2022
by
Paul
Browse files
Only gemm used once not c matrix
parent
d6523b49
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
src/targets/gpu/fuse_ops.cpp
src/targets/gpu/fuse_ops.cpp
+2
-2
No files found.
src/targets/gpu/fuse_ops.cpp
View file @
48cf58f6
...
@@ -975,8 +975,8 @@ struct find_gemm_pointwise
...
@@ -975,8 +975,8 @@ struct find_gemm_pointwise
return
precompile_name
(
"pointwise"
)(
return
precompile_name
(
"pointwise"
)(
match
::
nargs
(
3
),
match
::
nargs
(
3
),
match
::
all_of
[
match
::
inputs
()](
match
::
standard_shape
()),
match
::
all_of
[
match
::
inputs
()](
match
::
standard_shape
()),
match
::
either_arg
(
0
,
1
)(
match
::
used_once
().
bind
(
"c"
),
match
::
either_arg
(
0
,
1
)(
match
::
any
().
bind
(
"c"
),
match
::
name
(
"gpu::gemm"
)(
match
::
nargs
(
3
)).
bind
(
"gemm"
)));
match
::
name
(
"gpu::gemm"
)(
match
::
nargs
(
3
)
,
match
::
used_once
()
).
bind
(
"gemm"
)));
}
}
// TODO: Move to matcher.hpp
// TODO: Move to matcher.hpp
...
...
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