Skip to content

Commit

Permalink
[Gemma2] add bitsandbytes support for Gemma2 (vllm-project#8338)
Browse files Browse the repository at this point in the history
  • Loading branch information
blueyo0 authored Sep 12, 2024
1 parent 5a60699 commit 1bf2dd9
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions vllm/model_executor/models/gemma2.py
Original file line number Diff line number Diff line change
Expand Up @@ -312,6 +312,14 @@ class Gemma2ForCausalLM(nn.Module, SupportsLoRA):
# Gemma does not apply LoRA to the embedding layer.
embedding_modules = {}
embedding_padding_modules = []
bitsandbytes_stacked_params_mapping = {
# shard_name, weight_name, index
"q_proj": ("qkv_proj", 0),
"k_proj": ("qkv_proj", 1),
"v_proj": ("qkv_proj", 2),
"gate_proj": ("gate_up_proj", 0),
"up_proj": ("gate_up_proj", 1),
}

def __init__(
self,
Expand Down

0 comments on commit 1bf2dd9

Please sign in to comment.