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
8734b6ad
Commit
8734b6ad
authored
Oct 09, 2018
by
Paul
Browse files
Check for single output
parent
bdcd2fc6
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 @
8734b6ad
...
@@ -252,8 +252,8 @@ struct miopen_conv_bias_relu
...
@@ -252,8 +252,8 @@ struct miopen_conv_bias_relu
template
<
class
...
Ms
>
template
<
class
...
Ms
>
auto
conv_bias
(
Ms
...
ms
)
auto
conv_bias
(
Ms
...
ms
)
{
{
return
match
::
name
(
"gpu::add"
)(
match
::
either_arg
(
0
,
1
)(
match
::
arg
(
0
)(
bias_shape
()).
bind
(
"bias"
),
return
match
::
name
(
"gpu::add"
)(
match
::
either_arg
(
0
,
1
)(
match
::
arg
(
0
)(
bias_shape
(
match
::
output
()
)).
bind
(
"bias"
),
fusable_conv
().
bind
(
"conv"
)),
fusable_conv
(
match
::
output
()
).
bind
(
"conv"
)),
match
::
output
(),
ms
...);
ms
...);
}
}
...
...
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