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
ColossalAI
Commits
6b600296
Commit
6b600296
authored
Mar 10, 2022
by
Jiarui Fang
Committed by
Frank Lee
Mar 11, 2022
Browse files
[zero] zero init context collect numel of model (#375)
parent
1ed7c24c
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
9 additions
and
3 deletions
+9
-3
colossalai/zero/init_ctx/init_context.py
colossalai/zero/init_ctx/init_context.py
+5
-1
tests/test_zero_data_parallel/test_init_context.py
tests/test_zero_data_parallel/test_init_context.py
+4
-2
No files found.
colossalai/zero/init_ctx/init_context.py
View file @
6b600296
...
...
@@ -100,7 +100,8 @@ class ZeroInitContext(InsertPostInitMethodToModuleSubClasses):
shard_strategy
:
BaseShardStrategy
,
shard_param
:
bool
=
False
,
shard_grad
:
bool
=
False
,
rm_torch_payload_on_the_fly
=
False
):
rm_torch_payload_on_the_fly
=
False
,
model_numel_tensor
:
torch
.
Tensor
=
torch
.
zeros
(
1
,
dtype
=
torch
.
int
)):
super
().
__init__
()
self
.
convert_fp16
=
convert_fp16
self
.
target_device
=
target_device
...
...
@@ -110,6 +111,7 @@ class ZeroInitContext(InsertPostInitMethodToModuleSubClasses):
# FIXME(jiaruifang) now setting it to True is invalid.
self
.
rm_torch_payload_on_the_fly
=
False
self
.
initialized_param_list
=
[]
self
.
model_numel_tensor
=
model_numel_tensor
def
_post_context_exec
(
self
):
"""The callback function when the context exits.
...
...
@@ -129,6 +131,8 @@ class ZeroInitContext(InsertPostInitMethodToModuleSubClasses):
if
hasattr
(
param
,
'col_attr'
):
continue
self
.
model_numel_tensor
+=
param
.
numel
()
target_device
=
self
.
target_device
# convert to fp16 if necessary
...
...
tests/test_zero_data_parallel/test_init_context.py
View file @
6b600296
...
...
@@ -23,10 +23,12 @@ def run_dist(rank, world_size, port, init_device):
for
get_components_func
in
non_distributed_component_funcs
:
model_builder
,
_
,
_
,
_
,
_
=
get_components_func
()
model_numel_tensor
=
torch
.
zeros
(
1
,
dtype
=
torch
.
int
)
with
ZeroInitContext
(
convert_fp16
=
True
,
target_device
=
init_device
,
shard_strategy
=
TensorShardStrategy
(),
shard_param
=
True
):
shard_param
=
True
,
model_numel_tensor
=
model_numel_tensor
):
model
=
model_builder
(
checkpoint
=
True
)
for
param
in
model
.
parameters
():
...
...
@@ -38,7 +40,7 @@ def run_dist(rank, world_size, port, init_device):
print
(
f
'cpu usgae
{
GLOBAL_MODEL_DATA_TRACER
.
cpu_usage
}
'
)
print
(
f
'cuda usgae
{
GLOBAL_MODEL_DATA_TRACER
.
cuda_usage
}
'
)
print
(
f
'numel
{
model_numel_tensor
}
'
)
if
init_device
.
type
==
'cuda'
:
assert
(
GLOBAL_MODEL_DATA_TRACER
.
cuda_usage
>
0
)
elif
init_device
.
type
==
'cpu'
:
...
...
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