-
Notifications
You must be signed in to change notification settings - Fork 4.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' into fix-z3-sp-arg
- Loading branch information
Showing
10 changed files
with
509 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -18,3 +18,4 @@ | |
from .phi3 import * | ||
from .qwen import * | ||
from .qwen_v2 import * | ||
from .qwen_v2_moe import * |
6 changes: 6 additions & 0 deletions
6
deepspeed/inference/v2/model_implementations/qwen_v2_moe/__init__.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
# Copyright (c) Microsoft Corporation. | ||
# SPDX-License-Identifier: Apache-2.0 | ||
|
||
# DeepSpeed Team | ||
|
||
from .policy import Qwen2MoePolicy |
103 changes: 103 additions & 0 deletions
103
deepspeed/inference/v2/model_implementations/qwen_v2_moe/container.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,103 @@ | ||
# Copyright (c) Microsoft Corporation. | ||
# SPDX-License-Identifier: Apache-2.0 | ||
|
||
# DeepSpeed Team | ||
|
||
# Create a container object to save model-specific tensors using the policy file above. | ||
|
||
from ..common_parameters import * | ||
from ..layer_container_base import LayerContainer | ||
''' | ||
# HF Qwen1.5-MoE-A2.7B model looks like this: | ||
Qwen2MoeForCausalLM( | ||
(model): Qwen2MoeModel( | ||
(embed_tokens): Embedding(151936, 2048) | ||
(layers): ModuleList( | ||
(0-23): 24 x Qwen2MoeDecoderLayer( | ||
(self_attn): Qwen2MoeSdpaAttention( | ||
(q_proj): Linear(in_features=2048, out_features=2048, bias=True) | ||
(k_proj): Linear(in_features=2048, out_features=2048, bias=True) | ||
(v_proj): Linear(in_features=2048, out_features=2048, bias=True) | ||
(o_proj): Linear(in_features=2048, out_features=2048, bias=False) | ||
(rotary_emb): Qwen2MoeRotaryEmbedding() | ||
) | ||
(mlp): Qwen2MoeSparseMoeBlock( | ||
(gate): Linear(in_features=2048, out_features=60, bias=False) | ||
(experts): ModuleList( | ||
(0-59): 60 x Qwen2MoeMLP( | ||
(gate_proj): Linear(in_features=2048, out_features=1408, bias=False) | ||
(up_proj): Linear(in_features=2048, out_features=1408, bias=False) | ||
(down_proj): Linear(in_features=1408, out_features=2048, bias=False) | ||
(act_fn): SiLU() | ||
) | ||
) | ||
(shared_expert): Qwen2MoeMLP( | ||
(gate_proj): Linear(in_features=2048, out_features=5632, bias=False) | ||
(up_proj): Linear(in_features=2048, out_features=5632, bias=False) | ||
(down_proj): Linear(in_features=5632, out_features=2048, bias=False) | ||
(act_fn): SiLU() | ||
) | ||
(shared_expert_gate): Linear(in_features=2048, out_features=1, bias=False) | ||
) | ||
(input_layernorm): Qwen2MoeRMSNorm() | ||
(post_attention_layernorm): Qwen2MoeRMSNorm() | ||
) | ||
) | ||
(norm): Qwen2MoeRMSNorm() | ||
) | ||
(lm_head): Linear(in_features=2048, out_features=151936, bias=False) | ||
) | ||
''' | ||
|
||
|
||
class Qwen2MoeTransformerContainer(LayerContainer): | ||
""" | ||
Transformer layer container for the Qwen2Moe model. | ||
""" | ||
qkv_w: UnfusedQKVParameter | ||
qkv_b: UnfusedQKVParameter | ||
attn_out_w: AttentionOutputParameter | ||
moe_gate: MoEGatingWeightParameter | ||
moe_mlp_1: UnfusedMoEGatedMLPParameter | ||
moe_mlp_2: UnfusedMoEMLP2Parameter | ||
shared_moe_mlp_1: GatedMLPParameter | ||
shared_moe_mlp_2: MLP2Parameter | ||
shared_moe_gate: MoEGatingWeightParameter | ||
attn_norm_gamma: NormParameter | ||
mlp_norm_gamma: NormParameter | ||
|
||
PARAM_MAPPING = { | ||
"self_attn.q_proj.weight": "qkv_w.q_params", | ||
"self_attn.k_proj.weight": "qkv_w.k_params", | ||
"self_attn.v_proj.weight": "qkv_w.v_params", | ||
"self_attn.q_proj.bias": "qkv_b.q_params", | ||
"self_attn.k_proj.bias": "qkv_b.k_params", | ||
"self_attn.v_proj.bias": "qkv_b.v_params", | ||
"self_attn.o_proj.weight": "attn_out_w.params", | ||
"mlp.gate.weight": "moe_gate.params", | ||
"mlp.experts.*.gate_proj.weight": "moe_mlp_1.gating_experts", | ||
"mlp.experts.*.up_proj.weight": "moe_mlp_1.up_experts", | ||
"mlp.experts.*.down_proj.weight": "moe_mlp_2.experts", | ||
"mlp.shared_expert.gate_proj.weight": "shared_moe_mlp_1.gate_params", | ||
"mlp.shared_expert.up_proj.weight": "shared_moe_mlp_1.up_params", | ||
"mlp.shared_expert.down_proj.weight": "shared_moe_mlp_2.params", | ||
"mlp.shared_expert_gate.weight": "shared_moe_gate.params", | ||
"input_layernorm.weight": "attn_norm_gamma.params", | ||
"post_attention_layernorm.weight": "mlp_norm_gamma.params", | ||
} | ||
|
||
|
||
class Qwen2MoeNonTransformerContainer(LayerContainer): | ||
""" | ||
Non-Transformer layer container for the Qwen2Moe model. | ||
""" | ||
word_emb: EmbeddingParameter | ||
word_unembed: UnembedParameter | ||
final_norm: NormParameter | ||
|
||
PARAM_MAPPING = { | ||
"model.embed_tokens.weight": "word_emb.params", | ||
"model.norm.weight": "final_norm.params", | ||
"lm_head.weight": "word_unembed.params", | ||
} |
Oops, something went wrong.