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
439c35f3
Commit
439c35f3
authored
Oct 08, 2018
by
Paul
Browse files
Formatting
parent
49acfcd7
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
2 deletions
+7
-2
src/targets/gpu/fuse_ops.cpp
src/targets/gpu/fuse_ops.cpp
+7
-2
No files found.
src/targets/gpu/fuse_ops.cpp
View file @
439c35f3
...
...
@@ -176,7 +176,8 @@ struct miopen_conv_bias
fusion
::
op_t
conv
;
fusion
::
op_t
bias
;
miopen_conv_bias
(
op
::
convolution
c
,
const
shape
&
input
,
const
shape
&
weights
,
const
shape
&
b
)
:
op
(
c
),
f
(
input
)
miopen_conv_bias
(
op
::
convolution
c
,
const
shape
&
input
,
const
shape
&
weights
,
const
shape
&
b
)
:
op
(
c
),
f
(
input
)
{
conv
=
f
.
create_conv
(
op
,
weights
);
bias
=
f
.
create_bias
(
b
);
...
...
@@ -213,7 +214,11 @@ struct miopen_conv_bias_relu
fusion
::
op_t
bias
;
fusion
::
op_t
relu
;
miopen_conv_bias_relu
(
op
::
convolution
c
,
const
shape
&
input
,
const
shape
&
weights
,
const
shape
&
b
)
:
op
(
c
),
f
(
input
)
miopen_conv_bias_relu
(
op
::
convolution
c
,
const
shape
&
input
,
const
shape
&
weights
,
const
shape
&
b
)
:
op
(
c
),
f
(
input
)
{
conv
=
f
.
create_conv
(
op
,
weights
);
bias
=
f
.
create_bias
(
b
);
...
...
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