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
OpenDAS
vision
Commits
f2f085bf
Unverified
Commit
f2f085bf
authored
Apr 01, 2020
by
Francisco Massa
Committed by
GitHub
Apr 01, 2020
Browse files
Fix C++ lint (#2041)
parent
7499851f
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
torchvision/csrc/cpu/DeformConv_cpu.cpp
torchvision/csrc/cpu/DeformConv_cpu.cpp
+3
-3
No files found.
torchvision/csrc/cpu/DeformConv_cpu.cpp
View file @
f2f085bf
...
...
@@ -392,8 +392,8 @@ at::Tensor DeformConv2d_forward_cpu(
.
addmm_
(
weight
[
g
].
flatten
(
1
),
columns
[
g
])
.
view_as
(
out_buf
[
b
][
g
]);
}
columns
=
columns
.
view
(
{
columns
.
size
(
0
)
*
columns
.
size
(
1
),
columns
.
size
(
2
)});
columns
=
columns
.
view
(
{
columns
.
size
(
0
)
*
columns
.
size
(
1
),
columns
.
size
(
2
)});
}
out_buf
=
out_buf
.
view
({
batch_sz
/
n_parallel_imgs
,
...
...
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