Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

New Model, support DeepSeek MoE model #560

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions awq/models/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,5 +20,6 @@
from .llava_next import LlavaNextAWQForCausalLM
from .phi3 import Phi3AWQForCausalLM
from .cohere import CohereAWQForCausalLM
from .deepseek import DeepseekAWQForCausalLM
from .deepseek_v2 import DeepseekV2AWQForCausalLM
from .minicpm import MiniCPMAWQForCausalLM
1 change: 1 addition & 0 deletions awq/models/auto.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@
"llava_next": LlavaNextAWQForCausalLM,
"phi3": Phi3AWQForCausalLM,
"cohere": CohereAWQForCausalLM,
"deepseek": DeepseekAWQForCausalLM,
"deepseek_v2": DeepseekV2AWQForCausalLM,
"minicpm": MiniCPMAWQForCausalLM,
}
Expand Down
1 change: 1 addition & 0 deletions awq/models/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -81,6 +81,7 @@
"llava_next": "AutoModelForVision2Seq",
"phi3": "AutoModelForCausalLM",
"cohere": "AutoModelForCausalLM",
"deepseek": "AutoModelForCausalLM",
"deepseek_v2": "AutoModelForCausalLM",
"minicpm": "AutoModelForCausalLM",
}
Expand Down
103 changes: 103 additions & 0 deletions awq/models/deepseek.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,103 @@
import tqdm
from typing import List, Tuple
from .base import BaseAWQForCausalLM


class DeepseekAWQForCausalLM(BaseAWQForCausalLM):
layer_type = "DeepseekDecoderLayer"
max_seq_len_key = "max_position_embeddings"

@staticmethod
def get_model_layers(model):
return model.model.layers

@staticmethod
def get_act_for_scaling(module):
return dict(is_scalable=False)

@staticmethod
def move_embed(model, device: str):
model.model.embed_tokens = model.model.embed_tokens.to(device)

@staticmethod
def get_layers_for_scaling(
module, input_feat, module_kwargs
):
layers = []

# attention input
layers.append(
dict(
prev_op=module.input_layernorm,
layers=[
module.self_attn.q_proj,
module.self_attn.k_proj,
module.self_attn.v_proj,
],
inp=input_feat["self_attn.q_proj"],
module2inspect=module.self_attn,
kwargs=module_kwargs,
)
)

if module.self_attn.v_proj.weight.shape == module.self_attn.o_proj.weight.shape:
layers.append(
dict(
prev_op=module.self_attn.v_proj,
layers=[module.self_attn.o_proj],
inp=input_feat["self_attn.o_proj"],
)
)

if hasattr(module.mlp, "gate"):
# linear in
layers.append(
dict(
prev_op=module.post_attention_layernorm,
layers=[
w
for expert in module.mlp.experts
for w in [expert.gate_proj, expert.up_proj]
] + [module.mlp.shared_experts.gate_proj, module.mlp.shared_experts.up_proj],
inp=input_feat["mlp"],
module2inspect=module.mlp,
)
)

# linear out
for i, expert in enumerate(module.mlp.experts):
layers.append(
dict(
prev_op=expert.up_proj,
layers=[expert.down_proj],
inp=input_feat[f"mlp.experts.{i}.down_proj"],
)
)
layers.append(
dict(
prev_op=module.mlp.shared_experts.up_proj,
layers=[module.mlp.shared_experts.down_proj],
inp=input_feat[f"mlp.shared_experts.down_proj"],
)
)
else:
# linear 1
layers.append(
dict(
prev_op=module.post_attention_layernorm,
layers=[module.mlp.gate_proj, module.mlp.up_proj],
inp=input_feat["mlp.gate_proj"],
module2inspect=module.mlp,
)
)

# linear 2
layers.append(
dict(
prev_op=module.mlp.up_proj,
layers=[module.mlp.down_proj],
inp=input_feat["mlp.down_proj"],
)
)

return layers
2 changes: 1 addition & 1 deletion awq/quantize/quantizer.py
Original file line number Diff line number Diff line change
Expand Up @@ -610,7 +610,7 @@ def cache_input_hook(m, x, y, name, feat_dict):
"block_sparse_moe": layer.block_sparse_moe,
}

if self.awq_model.model_type == "deepseek_v2":
if self.awq_model.model_type in ["deepseek_v2", "deepseek"]:
named_linears = {
**named_linears,
"mlp": layer.mlp,
Expand Down