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
ModelZoo
SOLOv2-pytorch
Commits
170b66f5
Commit
170b66f5
authored
Jan 17, 2019
by
yhcao6
Browse files
fix bug of deform_conv_backward_input_cuda in deform_conv_cuda.cpp
parent
14cb538f
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
1 deletion
+1
-1
mmdet/ops/dcn/src/deform_conv_cuda.cpp
mmdet/ops/dcn/src/deform_conv_cuda.cpp
+1
-1
No files found.
mmdet/ops/dcn/src/deform_conv_cuda.cpp
View file @
170b66f5
...
...
@@ -276,7 +276,7 @@ int deform_conv_backward_input_cuda(
for
(
int
elt
=
0
;
elt
<
batchSize
/
im2col_step
;
elt
++
)
{
columns
=
columns
.
addmm_
(
weight
.
flatten
(
1
).
transpose
(
0
,
1
),
gradOutputBuffer
[
elt
].
flatten
(
1
));
columns
=
columns
.
addmm_
(
weight
.
flatten
(
1
).
transpose
(
0
,
1
),
gradOutputBuffer
[
elt
].
flatten
(
1
)
,
0.0
f
,
1.0
f
);
deformable_col2im_coord
(
columns
,
input
[
elt
],
offset
[
elt
],
...
...
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