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
98cfc027
Commit
98cfc027
authored
Oct 12, 2018
by
Paul
Browse files
Disable miopen fusion for now
parent
d7d84f55
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
src/targets/gpu/fuse_ops.cpp
src/targets/gpu/fuse_ops.cpp
+3
-3
No files found.
src/targets/gpu/fuse_ops.cpp
View file @
98cfc027
...
@@ -314,7 +314,7 @@ template <class... Ms>
...
@@ -314,7 +314,7 @@ template <class... Ms>
auto
conv_bias
(
Ms
...
ms
)
auto
conv_bias
(
Ms
...
ms
)
{
{
return
match
::
name
(
"gpu::add"
)(
return
match
::
name
(
"gpu::add"
)(
match
::
either_arg
(
0
,
1
)(
match
::
arg
(
0
)(
bias_shape
(
match
::
output
())
)
.
bind
(
"bias"
),
match
::
either_arg
(
0
,
1
)(
bias_shape
(
match
::
output
()).
bind
(
"bias"
),
fusable_conv
(
match
::
output
()).
bind
(
"conv"
)),
fusable_conv
(
match
::
output
()).
bind
(
"conv"
)),
match
::
output
(),
match
::
output
(),
ms
...);
ms
...);
...
@@ -369,8 +369,8 @@ void fuse_ops::apply(program& p) const
...
@@ -369,8 +369,8 @@ void fuse_ops::apply(program& p) const
// clang-format off
// clang-format off
match
::
find_matches
(
p
,
match
::
find_matches
(
p
,
match_triadd
{},
match_triadd
{},
match_conv_bias_relu
{
ctx
},
//
match_conv_bias_relu{ctx},
match_conv_bias
{
ctx
}
//
match_conv_bias{ctx}
,
match_add_relu
{}
match_add_relu
{}
);
);
// clang-format on
// clang-format on
...
...
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