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
c734e5fd
Commit
c734e5fd
authored
Jun 03, 2019
by
Khalique
Browse files
change dilation value
parent
0a86e369
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
src/tf/tf.cpp
src/tf/tf.cpp
+2
-2
No files found.
src/tf/tf.cpp
View file @
c734e5fd
...
@@ -573,8 +573,8 @@ struct tf_parser
...
@@ -573,8 +573,8 @@ struct tf_parser
if
(
pad_mode
.
find
(
"SAME"
)
!=
std
::
string
::
npos
)
if
(
pad_mode
.
find
(
"SAME"
)
!=
std
::
string
::
npos
)
{
{
op
.
padding_mode
=
op
::
padding_mode_t
::
same
;
op
.
padding_mode
=
op
::
padding_mode_t
::
same
;
op
.
padding
[
0
]
=
op
::
calculate_padding
(
op
.
lengths
[
0
],
0
);
op
.
padding
[
0
]
=
op
::
calculate_padding
(
op
.
lengths
[
0
],
1
);
op
.
padding
[
1
]
=
op
::
calculate_padding
(
op
.
lengths
[
1
],
0
);
op
.
padding
[
1
]
=
op
::
calculate_padding
(
op
.
lengths
[
1
],
1
);
}
}
else
if
(
pad_mode
.
find
(
"VALID"
)
!=
std
::
string
::
npos
)
else
if
(
pad_mode
.
find
(
"VALID"
)
!=
std
::
string
::
npos
)
{
{
...
...
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