-
Notifications
You must be signed in to change notification settings - Fork 3.4k
[feat] support kimi_vl VLM model #1639
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
Merged
Merged
Changes from all commits
Commits
Show all changes
5 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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,225 @@ | ||
| # Copyright 2024 Bytedance Ltd. and/or its affiliates | ||
| # | ||
| # Licensed under the Apache License, Version 2.0 (the "License"); | ||
| # you may not use this file except in compliance with the License. | ||
| # You may obtain a copy of the License at | ||
| # | ||
| # http://www.apache.org/licenses/LICENSE-2.0 | ||
| # | ||
| # Unless required by applicable law or agreed to in writing, software | ||
| # distributed under the License is distributed on an "AS IS" BASIS, | ||
| # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
| # See the License for the specific language governing permissions and | ||
| # limitations under the License. | ||
|
|
||
| from typing import Optional, Tuple | ||
|
|
||
| import torch | ||
| import torch.nn.functional as F | ||
| from transformers.cache_utils import Cache | ||
| from transformers.modeling_flash_attention_utils import _flash_attention_forward | ||
|
|
||
| from verl.utils.ulysses import gather_heads_scatter_seq, gather_outpus_and_unpad, gather_seq_scatter_heads, get_ulysses_sequence_parallel_group, get_ulysses_sequence_parallel_rank, get_ulysses_sequence_parallel_world_size, validate_ulysses_config | ||
|
|
||
|
|
||
| def _merge_with_image_features( | ||
| self, | ||
| inputs_embeds: torch.Tensor, | ||
| input_ids: torch.Tensor, | ||
| image_features: torch.Tensor, | ||
| ): | ||
| """ | ||
| Args: | ||
| inputs_embeds (:obj:`torch.Tensor` of shape :obj:`(batch_size, sequence_length, input_embed_dim)`): | ||
| The input embeddings. | ||
| input_ids (:obj:`torch.Tensor` of shape :obj:`(batch_size, sequence_length)`): | ||
| The input ids. | ||
| image_features (:obj:`torch.Tensor` of shape :obj:`(image_token_nums, image_feature_dim)`): | ||
| The image features to merge with the input embeddings. | ||
| """ | ||
| image_token_index: int = self.config.media_placeholder_token_id | ||
|
|
||
| batch_size, sequence_length, input_embed_dim = inputs_embeds.shape | ||
| image_feature_nums, image_feature_dim = image_features.shape | ||
|
|
||
| assert image_feature_dim == input_embed_dim | ||
|
|
||
| image_token_nums = (input_ids == image_token_index).sum() | ||
| total_image_token_nums = torch.tensor([image_token_nums], dtype=image_token_nums.dtype, device=input_ids.device) | ||
| total_image_token_nums = gather_outpus_and_unpad(total_image_token_nums, gather_dim=0) # [sp_size] | ||
| assert image_feature_nums == total_image_token_nums.sum() | ||
|
|
||
| # (batch_size, sequence_length / sp, input_embed_dim) -> (batch_size * sequence_length / sp, input_embed_dim) | ||
| inputs_embeds = inputs_embeds.reshape(-1, input_embed_dim) | ||
|
|
||
| # (batch_size, sequence_length / sp) -> (batch_size * sequence_length / sp) | ||
| input_ids = input_ids.flatten() | ||
|
|
||
| # split image features and fill in the image token positions if there are image tokens | ||
| sp_image_features = image_features.split(total_image_token_nums.tolist(), dim=0) | ||
| sp_rank = get_ulysses_sequence_parallel_rank() | ||
| image_features = sp_image_features[sp_rank] | ||
| inputs_embeds[input_ids == image_token_index] = image_features | ||
|
|
||
| inputs_embeds = inputs_embeds.reshape((batch_size, sequence_length, input_embed_dim)) | ||
|
|
||
| return inputs_embeds | ||
|
|
||
|
|
||
| # Copied from transformers.models.llama.modeling_llama.rotate_half | ||
| def rotate_half(x): | ||
| """Rotates half the hidden dims of the input.""" | ||
| x1 = x[..., : x.shape[-1] // 2] | ||
| x2 = x[..., x.shape[-1] // 2 :] | ||
| return torch.cat((-x2, x1), dim=-1) | ||
|
|
||
|
|
||
| # Copied from transformers.models.llama.modeling_llama.apply_rotary_pos_emb | ||
| def apply_rotary_pos_emb(q, k, cos, sin, position_ids, unsqueeze_dim=1): | ||
| """Applies Rotary Position Embedding to the query and key tensors. | ||
|
|
||
| Args: | ||
| q (`torch.Tensor`): The query tensor. | ||
| k (`torch.Tensor`): The key tensor. | ||
| cos (`torch.Tensor`): The cosine part of the rotary embedding. | ||
| sin (`torch.Tensor`): The sine part of the rotary embedding. | ||
| position_ids (`torch.Tensor`): | ||
| The position indices of the tokens corresponding to the query and key tensors. For example, this can be | ||
| used to pass offsetted position ids when working with a KV-cache. | ||
| unsqueeze_dim (`int`, *optional*, defaults to 1): | ||
| The 'unsqueeze_dim' argument specifies the dimension along which to unsqueeze cos[position_ids] and | ||
| sin[position_ids] so that they can be properly broadcasted to the dimensions of q and k. For example, note | ||
| that cos[position_ids] and sin[position_ids] have the shape [batch_size, seq_len, head_dim]. Then, if q and | ||
| k have the shape [batch_size, heads, seq_len, head_dim], then setting unsqueeze_dim=1 makes | ||
| cos[position_ids] and sin[position_ids] broadcastable to the shapes of q and k. Similarly, if q and k have | ||
| the shape [batch_size, seq_len, heads, head_dim], then set unsqueeze_dim=2. | ||
| Returns: | ||
| `tuple(torch.Tensor)` comprising of the query and key tensors rotated using the Rotary Position Embedding. | ||
| """ | ||
| cos = cos[position_ids].unsqueeze(unsqueeze_dim) | ||
| sin = sin[position_ids].unsqueeze(unsqueeze_dim) | ||
|
|
||
| b, h, s, d = q.shape | ||
| q = q.view(b, h, s, d // 2, 2).transpose(4, 3).reshape(b, h, s, d) | ||
|
|
||
| b, h, s, d = k.shape | ||
| k = k.view(b, h, s, d // 2, 2).transpose(4, 3).reshape(b, h, s, d) | ||
|
|
||
| q_embed = (q * cos) + (rotate_half(q) * sin) | ||
| k_embed = (k * cos) + (rotate_half(k) * sin) | ||
| return q_embed, k_embed | ||
|
|
||
|
|
||
| # Copied from transformers.models.llama.modeling_llama.repeat_kv | ||
| def repeat_kv(hidden_states: torch.Tensor, n_rep: int) -> torch.Tensor: | ||
| """ | ||
| This is the equivalent of torch.repeat_interleave(x, dim=1, repeats=n_rep). The hidden states go from (batch, | ||
| num_key_value_heads, seqlen, head_dim) to (batch, num_attention_heads, seqlen, head_dim) | ||
| """ | ||
| batch, num_key_value_heads, slen, head_dim = hidden_states.shape | ||
| if n_rep == 1: | ||
| return hidden_states | ||
| hidden_states = hidden_states[:, :, None, :, :].expand(batch, num_key_value_heads, n_rep, slen, head_dim) | ||
| return hidden_states.reshape(batch, num_key_value_heads * n_rep, slen, head_dim) | ||
|
|
||
|
|
||
| def _ulysses_flash_attn_forward( | ||
| self, | ||
| hidden_states: torch.Tensor, | ||
| attention_mask: Optional[torch.LongTensor] = None, | ||
| position_ids: Optional[torch.LongTensor] = None, | ||
| past_key_value: Optional[Cache] = None, | ||
| output_attentions: bool = False, | ||
| use_cache: bool = False, | ||
| **kwargs, | ||
| ) -> Tuple[torch.Tensor, Optional[torch.Tensor], Optional[Tuple[torch.Tensor]]]: | ||
| bsz, q_len, _ = hidden_states.size() | ||
|
|
||
| if self.q_lora_rank is None: | ||
| q = self.q_proj(hidden_states) | ||
| else: | ||
| q = self.q_b_proj(self.q_a_layernorm(self.q_a_proj(hidden_states))) | ||
| q = q.view(bsz, q_len, self.num_heads, self.q_head_dim).transpose(1, 2) | ||
| q_nope, q_pe = torch.split(q, [self.qk_nope_head_dim, self.qk_rope_head_dim], dim=-1) | ||
|
|
||
| # Flash attention requires the input to have the shape | ||
| # batch_size x seq_length x head_dim x hidden_dim | ||
| # therefore we just need to keep the original shape | ||
| compressed_kv = self.kv_a_proj_with_mqa(hidden_states) | ||
| compressed_kv, k_pe = torch.split(compressed_kv, [self.kv_lora_rank, self.qk_rope_head_dim], dim=-1) | ||
| k_pe = k_pe.view(bsz, q_len, 1, self.qk_rope_head_dim).transpose(1, 2) | ||
| kv = self.kv_b_proj(self.kv_a_layernorm(compressed_kv)).view(bsz, q_len, self.num_heads, self.qk_nope_head_dim + self.v_head_dim).transpose(1, 2) | ||
|
|
||
| k_nope, value_states = torch.split(kv, [self.qk_nope_head_dim, self.v_head_dim], dim=-1) | ||
| kv_seq_len = value_states.shape[-2] | ||
|
|
||
| # patch to get all emb | ||
| ulysses_sp_size = get_ulysses_sequence_parallel_world_size() | ||
| kv_seq_len *= ulysses_sp_size | ||
|
|
||
| cos, sin = self.rotary_emb(value_states, seq_len=kv_seq_len) | ||
| q_pe, k_pe = apply_rotary_pos_emb(q_pe, k_pe, cos, sin, position_ids) | ||
|
|
||
| query_states = k_pe.new_empty(bsz, self.num_heads, q_len, self.q_head_dim) | ||
| query_states[:, :, :, : self.qk_nope_head_dim] = q_nope | ||
| query_states[:, :, :, self.qk_nope_head_dim :] = q_pe | ||
|
|
||
| key_states = k_pe.new_empty(bsz, self.num_heads, q_len, self.q_head_dim) | ||
| key_states[:, :, :, : self.qk_nope_head_dim] = k_nope | ||
| key_states[:, :, :, self.qk_nope_head_dim :] = k_pe | ||
|
|
||
| if self.q_head_dim != self.v_head_dim: | ||
| value_states = F.pad(value_states, [0, self.q_head_dim - self.v_head_dim]) | ||
|
|
||
| # patch | ||
| if ulysses_sp_size > 1: | ||
| validate_ulysses_config(self.num_heads, ulysses_sp_size) | ||
|
|
||
| num_key_value_groups = self.config.num_attention_heads // self.config.num_key_value_heads | ||
| key_states = repeat_kv(key_states, num_key_value_groups) | ||
| value_states = repeat_kv(value_states, num_key_value_groups) | ||
| query_states = gather_seq_scatter_heads(query_states, seq_dim=2, head_dim=1) | ||
| key_states = gather_seq_scatter_heads(key_states, seq_dim=2, head_dim=1) | ||
| value_states = gather_seq_scatter_heads(value_states, seq_dim=2, head_dim=1) | ||
| # (batch_size, num_head / sp_size, seq_length, head_size) | ||
| full_q_len = query_states.size(2) # full_q_len = seq_length | ||
|
|
||
| position_ids_list = [torch.empty_like(position_ids) for _ in range(ulysses_sp_size)] | ||
| torch.distributed.all_gather(position_ids_list, position_ids, group=get_ulysses_sequence_parallel_group()) | ||
| position_ids = torch.concat(position_ids_list, dim=-1) | ||
|
|
||
| else: | ||
| full_q_len = q_len | ||
|
|
||
| # TODO: These transpose are quite inefficient but Flash Attention requires the layout [batch_size, sequence_length, num_heads, head_dim]. We would need to refactor the KV cache | ||
| # to be able to avoid many of these transpose/reshape/view. | ||
| query_states = query_states.transpose(1, 2) | ||
| key_states = key_states.transpose(1, 2) | ||
| value_states = value_states.transpose(1, 2) | ||
|
|
||
| dropout_rate = self.attention_dropout if self.training else 0.0 | ||
|
|
||
| attn_output = _flash_attention_forward( | ||
| query_states, | ||
| key_states, | ||
| value_states, | ||
| attention_mask, | ||
| full_q_len, | ||
| dropout=dropout_rate, | ||
| sliding_window=None, | ||
| is_causal=self.is_causal, | ||
| use_top_left_mask=self._flash_attn_uses_top_left_mask, | ||
| position_ids=position_ids, # important: pass position ids | ||
| softmax_scale=self.softmax_scale, | ||
| ) | ||
|
|
||
| if ulysses_sp_size > 1: | ||
| attn_output = gather_heads_scatter_seq(attn_output, head_dim=2, seq_dim=1) | ||
|
|
||
| if self.q_head_dim != self.v_head_dim: | ||
| attn_output = attn_output[:, :, :, : self.v_head_dim] | ||
|
|
||
| attn_output = attn_output.reshape(bsz, q_len, self.num_heads * self.v_head_dim).contiguous() | ||
| attn_output = self.o_proj(attn_output) | ||
|
|
||
| return attn_output, None, None | ||
This file contains hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.