Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
F
food-round2
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Joel Joseph
food-round2
Commits
d04fa0f3
Commit
d04fa0f3
authored
6 years ago
by
Kai Chen
Browse files
Options
Downloads
Patches
Plain Diff
move _sync_param from forward to init
parent
b7968de7
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
mmdet/nn/parallel/distributed.py
+2
-5
2 additions, 5 deletions
mmdet/nn/parallel/distributed.py
tools/train.py
+1
-1
1 addition, 1 deletion
tools/train.py
with
3 additions
and
6 deletions
mmdet/nn/parallel/distributed.py
+
2
−
5
View file @
d04fa0f3
...
...
@@ -15,8 +15,8 @@ class MMDistributedDataParallel(nn.Module):
self
.
dim
=
dim
self
.
broadcast_buffers
=
broadcast_buffers
self
.
first_synced
=
False
self
.
broadcast_bucket_size
=
32
*
1024
*
1024
self
.
_sync_params
()
def
_dist_broadcast_coalesced
(
self
,
tensors
,
buffer_size
):
for
tensors
in
_take_tensors
(
tensors
,
buffer_size
):
...
...
@@ -26,7 +26,7 @@ class MMDistributedDataParallel(nn.Module):
tensors
,
_unflatten_dense_tensors
(
flat_tensors
,
tensors
)):
tensor
.
copy_
(
synced
)
def
sync_params
(
self
):
def
_
sync_params
(
self
):
module_states
=
list
(
self
.
module
.
state_dict
().
values
())
if
len
(
module_states
)
>
0
:
self
.
_dist_broadcast_coalesced
(
module_states
,
...
...
@@ -41,9 +41,6 @@ class MMDistributedDataParallel(nn.Module):
return
scatter_kwargs
(
inputs
,
kwargs
,
device_ids
,
dim
=
self
.
dim
)
def
forward
(
self
,
*
inputs
,
**
kwargs
):
if
not
self
.
first_synced
:
self
.
sync_params
()
self
.
first_synced
=
True
inputs
,
kwargs
=
self
.
scatter
(
inputs
,
kwargs
,
[
torch
.
cuda
.
current_device
()])
return
self
.
module
(
*
inputs
[
0
],
**
kwargs
[
0
])
This diff is collapsed.
Click to expand it.
tools/train.py
+
1
−
1
View file @
d04fa0f3
...
...
@@ -95,7 +95,7 @@ def main():
model
=
build_detector
(
cfg
.
model
,
train_cfg
=
cfg
.
train_cfg
,
test_cfg
=
cfg
.
test_cfg
)
if
dist
:
model
=
MMDistributedDataParallel
(
model
)
.
cuda
()
model
=
MMDistributedDataParallel
(
model
.
cuda
()
)
else
:
model
=
MMDataParallel
(
model
,
device_ids
=
range
(
cfg
.
gpus
)).
cuda
()
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment