### What this PR does / why we need it? This PR added the initial DeepSeek V3.2 support with [vLLM v0.11.0](https://github.com/vllm-project/vllm/tree/releases/v0.11.0) (not released yet). We will complete vLLM adaptation as soon as possible. This feature will be ready in recent 1-2 days. Related doc: https://github.com/vllm-project/vllm-ascend/pull/3223 . ### Does this PR introduce _any_ user-facing change? Yes! ### How was this patch tested? CI passed and Run deepseek doc soon. - vLLM version: v0.11.0rc3 - vLLM main: https://github.com/vllm-project/vllm/commit/releases/v0.11.0 --------- Signed-off-by: wangxiyuan <wangxiyuan1007@gmail.com> Signed-off-by: zzzzwwjj <1183291235@qq.com> Signed-off-by: linfeng-yuan <1102311262@qq.com> Signed-off-by: wxsIcey <1790571317@qq.com> Signed-off-by: MengqingCao <cmq0113@163.com> Co-authored-by: zzzzwwjj <1183291235@qq.com> Co-authored-by: linfeng-yuan <1102311262@qq.com> Co-authored-by: wxsIcey <1790571317@qq.com> Co-authored-by: MengqingCao <cmq0113@163.com>
109 lines
4.3 KiB
Python
109 lines
4.3 KiB
Python
#
|
|
# Copyright (c) 2025 Huawei Technologies Co., Ltd. All Rights Reserved.
|
|
#
|
|
# 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.
|
|
import torch
|
|
|
|
|
|
def _generate_attn_mask(max_seq_len, dtype):
|
|
# Construct lower triangle matrix.
|
|
mask_flag = torch.tril(
|
|
torch.ones((max_seq_len, max_seq_len),
|
|
dtype=torch.bool)).view(max_seq_len, max_seq_len)
|
|
# Create upper triangle matrix used to mark mask positions.
|
|
mask_flag = ~mask_flag
|
|
# Currently for fp16 dtype, the mask value should be set to -inf.
|
|
# TODO: Eliminate this part in the future.
|
|
if dtype == torch.float16:
|
|
mask_value = torch.finfo(torch.float32).min
|
|
else:
|
|
mask_value = 1
|
|
attn_mask = torch.masked_fill(torch.zeros(size=(max_seq_len, max_seq_len)),
|
|
mask_flag, mask_value).to(dtype)
|
|
return attn_mask
|
|
|
|
|
|
class AttentionMaskBuilder:
|
|
|
|
def __init__(
|
|
self,
|
|
max_seq_len: int,
|
|
dtype: torch.dtype,
|
|
device: torch.device = None,
|
|
):
|
|
# NOTE: The device argument specifies the target NPU
|
|
# to be used for the newly added FIA operator.
|
|
# Only pass this parameter when using the new FIA operator.
|
|
|
|
attn_mask = _generate_attn_mask(max_seq_len, dtype)
|
|
|
|
self._seq_len_cached = attn_mask.shape[0]
|
|
self.attn_mask_cache = attn_mask
|
|
self.device = device
|
|
if torch.version.cann.startswith("8.3"):
|
|
assigned_mask_dim = 2048
|
|
self.chunked_prefill_attn_mask = torch.triu(
|
|
torch.ones(assigned_mask_dim, assigned_mask_dim),
|
|
diagonal=1).to(torch.int8).to(device)
|
|
|
|
@staticmethod
|
|
def get_mask_scale_factor(dtype: torch.dtype = torch.float16):
|
|
if dtype == torch.float16:
|
|
mask_scale_factor = 1
|
|
elif dtype == torch.bfloat16:
|
|
mask_scale_factor = -10000
|
|
else:
|
|
raise ValueError(
|
|
"The current operation now only supports data types: torch.float16 and "
|
|
"torch.bfloat16. Please ensure the input is of one of these types."
|
|
)
|
|
return mask_scale_factor
|
|
|
|
def get_attn_mask(self, max_seq_len: int, dtype: torch.dtype,
|
|
device: torch.device):
|
|
self._update_attn_cache(max_seq_len, dtype)
|
|
return self.attn_mask_cache[:max_seq_len, :max_seq_len].contiguous(
|
|
).to(device, non_blocking=True)
|
|
|
|
def get_splitfuse_attn_mask(
|
|
self,
|
|
seq_lens: torch.Tensor = None,
|
|
position: torch.Tensor = None,
|
|
dtype: torch.dtype = None,
|
|
device: torch.device = None,
|
|
) -> torch.Tensor:
|
|
if torch.version.cann.startswith("8.3"):
|
|
return self.chunked_prefill_attn_mask
|
|
else:
|
|
if dtype not in [torch.float16, torch.bfloat16]:
|
|
raise ValueError(
|
|
"splitfuse_attn_mask now only supports bf16 and fp16")
|
|
max_seq_len = max(seq_lens, default=0)
|
|
self._update_attn_cache(max_seq_len, dtype)
|
|
# FIXME: Currently the mask value of chunked-prefill situation and Prefill-Only situation
|
|
# is not the same. Fix this in the future when kernel is ready.
|
|
mask_scale_factor = AttentionMaskBuilder.get_mask_scale_factor(
|
|
dtype)
|
|
attn_mask = torch.index_select(self.attn_mask_cache,
|
|
dim=0,
|
|
index=position)[:, :max_seq_len]
|
|
attn_mask *= mask_scale_factor
|
|
return attn_mask.contiguous().to(device, non_blocking=True)
|
|
|
|
def _update_attn_cache(self, seqlen: int, dtype: torch.dtype):
|
|
if seqlen > self._seq_len_cached:
|
|
self._seq_len_cached = seqlen
|
|
self.attn_mask_cache = _generate_attn_mask(seqlen, dtype)
|
|
if self.attn_mask_cache.dtype != dtype:
|
|
self.attn_mask_cache = self.attn_mask_cache.to(dtype)
|