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
36b84772
Commit
36b84772
authored
Feb 27, 2022
by
HELSON
Committed by
Frank Lee
Mar 11, 2022
Browse files
Fixed parameter initialization in FFNExpert (#251)
parent
e13293bb
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
14 additions
and
18 deletions
+14
-18
colossalai/nn/layer/moe/_operation.py
colossalai/nn/layer/moe/_operation.py
+8
-14
colossalai/nn/layer/moe/experts.py
colossalai/nn/layer/moe/experts.py
+6
-4
No files found.
colossalai/nn/layer/moe/_operation.py
View file @
36b84772
...
@@ -21,17 +21,15 @@ class AllToAll(torch.autograd.Function):
...
@@ -21,17 +21,15 @@ class AllToAll(torch.autograd.Function):
"""
"""
@
staticmethod
@
staticmethod
def
forward
(
ctx
:
Any
,
def
forward
(
ctx
:
Any
,
inputs
:
Tensor
,
parallel_mode
:
ParallelMode
)
->
Tensor
:
inputs
:
Tensor
,
parallel_mode
:
ParallelMode
)
->
Tensor
:
if
ctx
is
not
None
:
if
ctx
is
not
None
:
ctx
.
parallel_mode
=
parallel_mode
ctx
.
parallel_mode
=
parallel_mode
if
not
inputs
.
is_contiguous
():
if
not
inputs
.
is_contiguous
():
inputs
=
inputs
.
contiguous
()
inputs
=
inputs
.
contiguous
()
if
gpc
.
get_world_size
(
parallel_mode
)
==
1
:
return
inputs
output
=
torch
.
empty_like
(
inputs
)
output
=
torch
.
empty_like
(
inputs
)
dist
.
all_to_all_single
(
output
,
inputs
,
dist
.
all_to_all_single
(
output
,
inputs
,
group
=
gpc
.
get_group
(
parallel_mode
))
group
=
gpc
.
get_group
(
parallel_mode
))
return
output
return
output
@
staticmethod
@
staticmethod
...
@@ -58,8 +56,7 @@ class MoeDispatch(torch.autograd.Function):
...
@@ -58,8 +56,7 @@ class MoeDispatch(torch.autograd.Function):
@
staticmethod
@
staticmethod
def
backward
(
ctx
,
output_grad
):
def
backward
(
ctx
,
output_grad
):
mask
,
dest_idx
=
ctx
.
saved_tensors
mask
,
dest_idx
=
ctx
.
saved_tensors
d_tokens
=
colossal_moe_cuda
.
dispatch_backward
(
d_tokens
=
colossal_moe_cuda
.
dispatch_backward
(
ctx
.
s
,
ctx
.
ec
,
ctx
.
h
,
output_grad
,
mask
,
dest_idx
)
ctx
.
s
,
ctx
.
ec
,
ctx
.
h
,
output_grad
,
mask
,
dest_idx
)
return
d_tokens
,
None
,
None
,
None
return
d_tokens
,
None
,
None
,
None
...
@@ -76,9 +73,7 @@ class MoeCombine(torch.autograd.Function):
...
@@ -76,9 +73,7 @@ class MoeCombine(torch.autograd.Function):
fp16_flag
=
(
expert_tokens
.
dtype
==
torch
.
float16
)
fp16_flag
=
(
expert_tokens
.
dtype
==
torch
.
float16
)
cb_input
=
expert_tokens
.
to
(
torch
.
float32
)
if
fp16_flag
else
expert_tokens
cb_input
=
expert_tokens
.
to
(
torch
.
float32
)
if
fp16_flag
else
expert_tokens
ctokens
=
colossal_moe_cuda
.
combine_forward
(
s
,
e
,
c
,
h
,
ctokens
=
colossal_moe_cuda
.
combine_forward
(
s
,
e
,
c
,
h
,
cb_input
,
logits
,
mask
,
dest_idx
)
cb_input
,
logits
,
mask
,
dest_idx
)
output
=
ctokens
.
to
(
torch
.
float16
)
if
fp16_flag
else
ctokens
output
=
ctokens
.
to
(
torch
.
float16
)
if
fp16_flag
else
ctokens
ctx
.
save_for_backward
(
expert_tokens
,
logits
,
mask
,
dest_idx
)
ctx
.
save_for_backward
(
expert_tokens
,
logits
,
mask
,
dest_idx
)
...
@@ -97,9 +92,8 @@ class MoeCombine(torch.autograd.Function):
...
@@ -97,9 +92,8 @@ class MoeCombine(torch.autograd.Function):
cb_grad
=
tokens_grad
.
to
(
torch
.
float32
)
if
tokens_grad
.
dtype
is
torch
.
float16
\
cb_grad
=
tokens_grad
.
to
(
torch
.
float32
)
if
tokens_grad
.
dtype
is
torch
.
float16
\
else
tokens_grad
else
tokens_grad
cb_input
=
expert_tokens
.
to
(
torch
.
float32
)
if
ctx
.
fp16_flag
else
expert_tokens
cb_input
=
expert_tokens
.
to
(
torch
.
float32
)
if
ctx
.
fp16_flag
else
expert_tokens
d_expert
,
d_logits
=
colossal_moe_cuda
.
combine_backward
(
d_expert
,
d_logits
=
colossal_moe_cuda
.
combine_backward
(
ctx
.
s
,
ctx
.
e
,
ctx
.
c
,
ctx
.
h
,
cb_grad
,
cb_input
,
logits
,
ctx
.
s
,
ctx
.
e
,
ctx
.
c
,
ctx
.
h
,
mask
,
dest_idx
)
cb_grad
,
cb_input
,
logits
,
mask
,
dest_idx
)
d_expert
=
d_expert
.
to
(
torch
.
float16
)
if
ctx
.
fp16_flag
else
d_expert
d_expert
=
d_expert
.
to
(
torch
.
float16
)
if
ctx
.
fp16_flag
else
d_expert
return
d_expert
,
d_logits
,
None
,
None
,
None
return
d_expert
,
d_logits
,
None
,
None
,
None
...
...
colossalai/nn/layer/moe/experts.py
View file @
36b84772
...
@@ -62,10 +62,12 @@ class FFNExperts(nn.Module):
...
@@ -62,10 +62,12 @@ class FFNExperts(nn.Module):
s1
=
math
.
sqrt
(
0.1
/
d_model
)
s1
=
math
.
sqrt
(
0.1
/
d_model
)
s2
=
math
.
sqrt
(
0.1
/
d_ff
)
s2
=
math
.
sqrt
(
0.1
/
d_ff
)
nn
.
init
.
trunc_normal_
(
self
.
w1
,
std
=
s1
)
nn
.
init
.
trunc_normal_
(
self
.
b1
,
std
=
s1
)
with
seed
(
ParallelMode
.
MOE_MODEL
):
nn
.
init
.
trunc_normal_
(
self
.
w2
,
std
=
s2
)
nn
.
init
.
trunc_normal_
(
self
.
w1
,
std
=
s1
)
nn
.
init
.
trunc_normal_
(
self
.
b2
,
std
=
s2
)
nn
.
init
.
trunc_normal_
(
self
.
b1
,
std
=
s1
)
nn
.
init
.
trunc_normal_
(
self
.
w2
,
std
=
s2
)
nn
.
init
.
trunc_normal_
(
self
.
b2
,
std
=
s2
)
self
.
act
=
nn
.
GELU
()
if
activation
is
None
else
activation
self
.
act
=
nn
.
GELU
()
if
activation
is
None
else
activation
self
.
drop
=
nn
.
Dropout
(
p
=
drop_rate
)
self
.
drop
=
nn
.
Dropout
(
p
=
drop_rate
)
...
...
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