Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
S
seminar-breakout
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Shashank Suhas
seminar-breakout
Commits
55b2e0f1
You need to sign in or sign up before continuing.
Commit
55b2e0f1
authored
Jul 11, 2020
by
Yuxin Wu
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
TF2 compat
parent
9c1b1b7b
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
15 additions
and
4 deletions
+15
-4
tensorpack/callbacks/prof.py
tensorpack/callbacks/prof.py
+11
-3
tensorpack/graph_builder/training.py
tensorpack/graph_builder/training.py
+4
-1
No files found.
tensorpack/callbacks/prof.py
View file @
55b2e0f1
...
@@ -252,9 +252,15 @@ class GPUMemoryTracker(Callback):
...
@@ -252,9 +252,15 @@ class GPUMemoryTracker(Callback):
assert
isinstance
(
devices
,
(
list
,
tuple
)),
devices
assert
isinstance
(
devices
,
(
list
,
tuple
)),
devices
devices
=
[
'/gpu:{}'
.
format
(
x
)
if
isinstance
(
x
,
int
)
else
x
for
x
in
devices
]
devices
=
[
'/gpu:{}'
.
format
(
x
)
if
isinstance
(
x
,
int
)
else
x
for
x
in
devices
]
self
.
_devices
=
devices
self
.
_devices
=
devices
self
.
_disabled
=
False
def
_setup_graph
(
self
):
def
_setup_graph
(
self
):
from
tensorflow.contrib.memory_stats
import
MaxBytesInUse
try
:
from
tensorflow.contrib.memory_stats
import
MaxBytesInUse
except
ImportError
:
logger
.
warning
(
"GPUMemoryTracker is not available in TF2."
)
self
.
_disabled
=
True
return
ops
=
[]
ops
=
[]
for
dev
in
self
.
_devices
:
for
dev
in
self
.
_devices
:
with
tf
.
device
(
dev
):
with
tf
.
device
(
dev
):
...
@@ -262,10 +268,12 @@ class GPUMemoryTracker(Callback):
...
@@ -262,10 +268,12 @@ class GPUMemoryTracker(Callback):
self
.
_fetches
=
tf
.
train
.
SessionRunArgs
(
fetches
=
ops
)
self
.
_fetches
=
tf
.
train
.
SessionRunArgs
(
fetches
=
ops
)
def
_before_train
(
self
):
def
_before_train
(
self
):
assert
gpu_available_in_session
(),
"PeakMemoryTracker only supports GPU!"
if
not
gpu_available_in_session
():
self
.
_disabled
=
True
logger
.
warning
(
"GPUMemoryTracker only supports GPU!"
)
def
_before_run
(
self
,
_
):
def
_before_run
(
self
,
_
):
if
self
.
local_step
==
self
.
trainer
.
steps_per_epoch
-
1
:
if
not
self
.
_disabled
and
self
.
local_step
==
self
.
trainer
.
steps_per_epoch
-
1
:
return
self
.
_fetches
return
self
.
_fetches
return
None
return
None
...
...
tensorpack/graph_builder/training.py
View file @
55b2e0f1
...
@@ -149,9 +149,10 @@ class SyncMultiGPUParameterServerBuilder(DataParallelBuilder):
...
@@ -149,9 +149,10 @@ class SyncMultiGPUParameterServerBuilder(DataParallelBuilder):
a list, contains the return values of `tower_fn` on each tower.
a list, contains the return values of `tower_fn` on each tower.
"""
"""
raw_devices
=
[
'/gpu:{}'
.
format
(
k
)
for
k
in
self
.
towers
]
raw_devices
=
[
'/gpu:{}'
.
format
(
k
)
for
k
in
self
.
towers
]
if
self
.
ps_device
==
'gpu'
:
if
self
.
ps_device
==
'gpu'
or
get_tf_version_tuple
()
>=
(
2
,
0
)
:
devices
=
[
LeastLoadedDeviceSetter
(
d
,
raw_devices
)
for
d
in
raw_devices
]
devices
=
[
LeastLoadedDeviceSetter
(
d
,
raw_devices
)
for
d
in
raw_devices
]
else
:
else
:
# TODO not working in TF2 - cause model to run on CPUs
devices
=
[
tf
.
train
.
replica_device_setter
(
devices
=
[
tf
.
train
.
replica_device_setter
(
worker_device
=
d
,
ps_device
=
'/cpu:0'
,
ps_tasks
=
1
)
for
d
in
raw_devices
]
worker_device
=
d
,
ps_device
=
'/cpu:0'
,
ps_tasks
=
1
)
for
d
in
raw_devices
]
...
@@ -204,6 +205,8 @@ class SyncMultiGPUReplicatedBuilder(DataParallelBuilder):
...
@@ -204,6 +205,8 @@ class SyncMultiGPUReplicatedBuilder(DataParallelBuilder):
super
(
SyncMultiGPUReplicatedBuilder
,
self
)
.
__init__
(
towers
)
super
(
SyncMultiGPUReplicatedBuilder
,
self
)
.
__init__
(
towers
)
self
.
_average
=
average
self
.
_average
=
average
assert
mode
in
[
'nccl'
,
'cpu'
,
'hierarchical'
],
mode
assert
mode
in
[
'nccl'
,
'cpu'
,
'hierarchical'
],
mode
if
get_tf_version_tuple
()
>=
(
2
,
0
)
and
mode
==
'cpu'
:
mode
=
'nccl'
# cpu mode causes the entire model to get located on cpu
self
.
_mode
=
mode
self
.
_mode
=
mode
if
self
.
_mode
==
'hierarchical'
and
len
(
towers
)
!=
8
:
if
self
.
_mode
==
'hierarchical'
and
len
(
towers
)
!=
8
:
...
...
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