"""Telechat fine grain interleave transformer Telechat's APIs."""
from typing import Optional
import math
import mindspore as ms
from mindspore import nn, __version__
import mindspore.common.dtype as mstype
from mindspore.common.tensor import Tensor
from mindspore.context import ParallelMode
from mindspore.ops import operations as P
from mindspore.parallel._utils import _get_parallel_mode, _is_sharding_propagation
from mindformers.models.llama.llama_layer import LlamaRMSNorm
from mindformers.modules.layers import _check_input_dtype, Dropout, RotaryEmbedding
from mindformers.modules.transformer import TransformerOpParallelConfig
from mindformers.modules.flash_attention import FlashAttention
from research.telechat2.telechat_layer import TelechatLinear, TelechatFeedForward
class _MicroBatch(nn.Cell):
"""
transform mini-batch to micro-batch in pipeline parallel.
Args:
params (micro_size): The number of micro-batch.
"""
def __init__(self, micro_size, input_size, axis_list):
super(_MicroBatch, self).__init__()
self.shape = P.Shape()
self.micro_size = micro_size
self.strided_slice_list = []
for _ in range(input_size):
self.strided_slice_list.append(P.StridedSlice())
self.axis_list = axis_list
def construct(self, i, *inputs):
"""construct for _MicroBatch."""
micro_inputs = ()
k = 0
for each_input in inputs:
input_shape = self.shape(each_input)
micro_batch_begin = i * input_shape[self.axis_list[k]] // self.micro_size
micro_batch_end = (i + 1) * input_shape[self.axis_list[k]] // self.micro_size
strided_slice_begin = ()
strided_slice_strides = ()
strided_slice_end = ()
for j, _ in enumerate(input_shape):
strided_slice_strides += (1,)
if j == self.axis_list[k]:
strided_slice_begin += (micro_batch_begin,)
strided_slice_end += (micro_batch_end,)
else:
strided_slice_begin += (0,)
strided_slice_end += (input_shape[j],)
micro_input = self.strided_slice_list[k](each_input, strided_slice_begin, \
strided_slice_end, strided_slice_strides)
micro_inputs += (micro_input,)
k += 1
return micro_inputs
class TelechatAttentionInterleave(nn.Cell):
r"""
This is an implementation of multihead attention in Telechat.
Args:
- **batch_size** (int): The batch size of the input tensor when do increnmental prediction. Should be a
positive value.
When do training or prediction, the argument will not work and the user can just pass None to the
argument.
- **src_seq_length** (int): The sequence length of the query vector.
- **tgt_seq_length** (int): The sequence length of the key and value vector.
- **dim** (int): The hidden size of the input.
- **head_dim** (int): The dim of head.
- **n_heads** (int): The number of the heads.
- **compute_dtype** (dtype.Number): The computation type of dense. Default mstype.float16.
Should be mstype.float32 or mstype.float16.
- **softmax_compute_type** (dtype.Number): The type of softmax computation module. Default mstype.float32.
Should be mstype.float32 or mstype.float16.
- **param_init_type** (dtype.Number): The parameter initialization type of the module. Default mstype.
float32. Should be mstype.float32 or mstype.float16.
- **qkv_has_bias** (bool): Whether Q/K/V in attention has bias or not.
- **use_past** (bool): Use the past state to compute, used for incremental prediction.
For example, if we have two words and want to generate the ten more words.
We just need to compute the two words' state only once, and generate the next word one by one.
When use_past is True, there are two steps to run the prediction.
In the first step, set the is_first_iteration to be True by
`model.add_flags_recursive(is_first_iteration=True)`, and pass the full inputs. Then, set the
is_first_iteration to be False by `model.add_flags_recursive(is_first_iteration=False)`. At this moment,
pass the single step's input tensor, and loop it. Default False.
- **parallel_config** (OpParallelConfig): The parallel configure. Default `default_dpmp_config`,
an instance of `OpParallelConfig` with default args.
Inputs:
- **x** (Tensor) - The input tokens with shape (batch_size, src_seq_length, hidden_size) or
(batch_size * src_seq_length, hidden_size), if the use_past is False or is_first_iteration=True.
Otherwise, must be (batch_size, 1, hidden_size)
- **freqs_cis** (Tuple) - The precompute freqs and mask for rotary position embedding used in attention.
- **attention_mask** (Tensor) - If the use_past is False or is_first_iteration=True, the attention mask
matrix should ba (batch_size, src_seq_length, tgt_seq_length), or None. None means there will be no mask
in softmax computation. Otherwise, the mask must be (batch_size, 1, tgt_seq_length)
- **key_past** (Tensor) - Float16 tensor with shape (batch_size, num_heads, head_dim, tgt_seq_length).
The past calculated key vector. Used for incremental prediction when the use_past is True.
Default None.
- **value_past** (Tensor) - Float16 tensor with shape (batch_size, num_heads, tgt_seq_length,
head_dim).
The past calculated value vector. Used for incremental prediction when the use_past is True.
Default None.
- **batch_valid_length** (Tensor) - Int32 tensor with shape (batch_size,) the past calculated the index.
Used for incremental prediction when the use_past is True. Default None.
Outputs:
Tuple, a tuple contains(`output`, `layer_present`)
- **output** (Tensor) - Tensor, the float tensor of the output of the layer with
shape (batch_size, src_seq_length, hidden_size) or (batch_size * src_seq_length, hidden_size),
if the use_past is False or is_first_iteration=True. Otherwise, it will be (batch_size, 1, hidden_size).
- **layer_present** (Tuple) - A tuple of the Tensor of the projected key and value vector with
((batch_size, num_heads, head_dim, tgt_seq_length),
(batch_size, num_heads, tgt_seq_length, head_dim)).
"""
def __init__(self,
seq_length,
dim: int = 512,
n_heads: int = 8,
sigma: float = 0.0048,
mean: float = 0.0,
hidden_dropout_prob: float = 1.0,
attention_dropout_prob: float = 1.0,
n_kv_heads: Optional[int] = None,
compute_dtype=mstype.float16,
softmax_compute_dtype=mstype.float32,
rotary_dtype=mstype.float32,
param_init_type=mstype.float32,
qkv_has_bias=False,
out_proj_has_bias=True,
use_rope_slice=False,
use_flash_attention=False,
parallel_config=TransformerOpParallelConfig()):
super().__init__()
self.seq_length = seq_length
self.hidden_size = dim
self.n_head = n_heads
self.hidden_dropout_prob = hidden_dropout_prob
self.attention_dropout_prob = attention_dropout_prob
self.head_dim = dim // n_heads
self.n_kv_head = n_heads if n_kv_heads is None else n_kv_heads
self.n_rep = self.n_head // self.n_kv_head
self.kv_dim = self.n_kv_head * self.head_dim
self.qkv_has_bias = qkv_has_bias
self.out_proj_has_bias = out_proj_has_bias
self.dtype = compute_dtype
self.softmax_dtype = softmax_compute_dtype
self.is_first_iteration = True
self.use_flash_attention = use_flash_attention
if self.hidden_size % self.n_head != 0:
raise ValueError("For 'MultiHeadAttention', the class variable 'hidden_size' must be a multiple "
"of 'n_head', but got the hidden_size is {} and the n_head is {}."
.format(self.hidden_size, self.n_head))
if self.n_kv_head % parallel_config.model_parallel != 0:
raise ValueError("For 'MultiHeadAttention', the class variable 'n_kv_head' must be a multiple of "
"'parallel_config.model_parallel', but got the n_kv_head is {} "
"and the parallel_config.model_parallel is {}."
.format(self.n_kv_head, parallel_config.model_parallel))
self.inv_norm_factor = Tensor(1.0 / math.sqrt(self.head_dim), dtype=compute_dtype)
self.shape = P.Shape()
self.reshape = P.Reshape()
self.transpose = P.Transpose()
self.merger_head_transpose = P.Transpose()
self.batch_matmul = P.BatchMatMul()
self.batch_matmul_q_k = P.BatchMatMul(transpose_b=True)
self.mul = P.Mul()
self.add = P.Add()
self.softmax = P.Softmax()
self.cast = P.Cast()
self.cast_attn = P.Cast()
self.tile_kv = P.Tile()
self.split_kv = ms.ops.auto_generate.SplitWithSize()
self.split_kv.add_prim_attr("skip_redistribution", True)
self.apply_rotary_emb = RotaryEmbedding(self.head_dim, rotary_dtype, use_rope_slice=use_rope_slice)
self.attention_dropout = Dropout(1 - self.attention_dropout_prob)
self.wq = TelechatLinear(self.hidden_size,
self.hidden_size,
has_bias=qkv_has_bias,
sigma=sigma,
mean=mean,
compute_dtype=compute_dtype,
param_init_type=param_init_type)
self.wk_v = TelechatLinear(self.hidden_size,
self.n_kv_head * self.head_dim * 2,
has_bias=qkv_has_bias,
sigma=sigma,
mean=mean,
compute_dtype=compute_dtype,
param_init_type=param_init_type)
self.wo = TelechatLinear(in_channels=self.hidden_size,
out_channels=self.hidden_size,
has_bias=out_proj_has_bias,
sigma=sigma,
mean=mean,
compute_dtype=compute_dtype,
param_init_type=param_init_type,
keep_prob=1 - self.hidden_dropout_prob)
dp = parallel_config.data_parallel
mp = parallel_config.model_parallel
self.split_kv.shard(((dp, mp, 1),))
if not (_get_parallel_mode() in (ParallelMode.AUTO_PARALLEL,) and _is_sharding_propagation()):
self.transpose.shard(((dp, 1, mp, 1),))
self.merger_head_transpose.shard(((dp, mp, 1, 1),))
self.batch_matmul_q_k.shard(((dp, mp, 1, 1), (dp, mp, 1, 1)))
self.batch_matmul.shard(((dp, mp, 1, 1), (dp, mp, 1, 1)))
self.mul.shard(((dp, mp, 1, 1), ()))
self.add.shard(((dp, 1, 1, 1), (dp, mp, 1, 1)))
self.softmax.shard(((dp, mp, 1, 1),))
self.tile_kv.shard(((dp, mp, 1, 1),))
self.apply_rotary_emb.shard(parallel_config)
if self.qkv_has_bias:
self.wq.shard(((dp, 1), (mp, 1)), ((dp, mp), (mp,)))
self.wk_v.shard(((dp, 1), (mp, 1)), ((dp, mp), (mp,)))
else:
self.wq.shard(((dp, 1), (mp, 1)))
self.wk_v.shard(((dp, 1), (mp, 1)))
if self.out_proj_has_bias:
self.wo.shard(((dp, mp), (1, mp)), ((dp, 1), (1,)))
else:
self.wo.shard(((dp, mp), (1, mp)))
if parallel_config.use_seq_parallel and self.is_first_iteration:
if self.out_proj_has_bias:
self.wo.shard(((dp, mp), (1, mp)), ((dp * mp, 1), (1,)), out_strategy_matmul=((dp * mp, 1),))
else:
self.wo.shard(((dp, mp), (1, mp)), out_strategy_matmul=((dp * mp, 1),))
if parallel_config.recompute.select_recompute and not self.use_flash_attention:
self.apply_rotary_emb.recompute()
self.tile_kv.recompute()
self.batch_matmul_q_k.recompute()
self.mul.recompute()
self.add.recompute()
self.cast_attn.recompute()
self.softmax.recompute()
self.batch_matmul.recompute()
if self.use_flash_attention:
self.flash_attention = FlashAttention(head_num=self.n_head,
pre_tokens=65536,
next_tokens=0,
input_layout='BNSD',
keep_prob=1. - attention_dropout_prob,
scale_value=1. / math.sqrt(self.head_dim),
sparse_mode=0,
use_attention_mask=True)
self.flash_attention.shard(parallel_config)
def compute_qkv(self, x):
"""compute the qkv with interleave number"""
x = self.reshape(x, (-1, x.shape[-1]))
query = self.cast(self.wq(x), self.dtype)
key_value = self.cast(self.wk_v(x), self.dtype)
key_value = self.reshape(key_value, (-1, self.n_kv_head, self.head_dim * 2))
key, value = self.split_kv(key_value, (self.head_dim, self.head_dim), 2)
key = self.reshape(key, (-1, self.n_kv_head * self.head_dim))
value = self.reshape(value, (-1, self.n_kv_head * self.head_dim))
return query, key, value
def cal_attn(self, query, key, value, mask, freqs_cis):
"""cal_attn"""
query = self.reshape(query, (-1, self.seq_length, self.n_head, self.head_dim))
key = self.reshape(key, (-1, self.seq_length, self.n_kv_head, self.head_dim))
value = self.reshape(value, (-1, self.seq_length, self.n_kv_head, self.head_dim))
query = self.transpose(query, (0, 2, 1, 3))
key = self.transpose(key, (0, 2, 1, 3))
value = self.transpose(value, (0, 2, 1, 3))
query, key = self.apply_rotary_emb(query, key, freqs_cis)
bs, n_head, seq, head_dim = query.shape
n_kv_head = key.shape[1]
query = self.reshape(query, (bs, n_head, seq, head_dim))
key = self.reshape(key, (bs, n_kv_head, seq, head_dim))
value = self.reshape(value, (bs, n_kv_head, seq, head_dim))
if self.use_flash_attention:
attention = self.flash_attention(query, key, value, mask)
attention = self._merge_heads(attention)
else:
key = self._repeat_kv(key, self.n_rep)
value = self._repeat_kv(value, self.n_rep)
attention = self._attn(query, key, value, mask)
return attention
def cal_output_proj(self, attention):
"""cal_output_proj"""
output = self.wo(attention)
return output
def _repeat_kv(self, x, rep):
"""repeat_kv"""
if rep == 1:
return x
bs, n_kv_head, seqlen, head_dim = x.shape
x = self.reshape(x, (bs, n_kv_head, 1, seqlen * head_dim))
x = self.tile_kv(x, (1, 1, rep, 1))
x = self.reshape(x, (bs, n_kv_head * rep, seqlen, head_dim))
return x
def _merge_heads(self, x):
"""
convert a 4d input to a 2d or 3d output
Inputs:
x: input tensor
Output:
x_merge: the 2d output
"""
x = self.merger_head_transpose(x, (0, 2, 1, 3))
x_shape = x.shape
new_shape = (-1, x_shape[-2] * x_shape[-1])
x_merge = self.reshape(x, new_shape)
return x_merge
def _attn(self, query, key, value, mask):
"""
Get the weighted score along the seq_length
Inputs:
query: the query matrix
key: the key matrix
value: the value matrix
mask: the attention mask adder matrix with shape (batch_size,
1, seq_length, seq_length)
Outputs:
weighted_values: Tensor, the weighted sum scores
"""
score = self.batch_matmul_q_k(query, key)
score = self.mul(score, self.inv_norm_factor)
score = self.add(mask, score)
attention_probs = self.softmax(self.cast_attn(score, self.softmax_dtype))
attention_probs = self.attention_dropout(attention_probs)
weighted_values = self.batch_matmul(self.cast(attention_probs, self.dtype), value)
attention_merge = self._merge_heads(weighted_values)
return attention_merge
class TelechatDecodeLayerInterleave(nn.Cell):
r"""
Transformer Layer. This is an implementation of the single layer of the transformer
encoder layer, including multihead attention and feedward layer.
Args:
seq_length(int): The input sequence length.
layer_id(int): The layer id of current transformer block layer.
dim(int): The hidden size of the input.
num_heads(int): The number of the heads.
multiple_of(int): The SwiGLU hidden layer size multiple of large power of 2.
norm_eps (float): The epsilon value of the denominator. Default 1e-5.
compute_dtype(dtype.Number): The computation type of the layer.
Should be mstype.float32 or mstype.float16. Default mstype.float32.
layernorm_compute_type(dtype.Number): The computation type of the norm.
Should be mstype.float32 or mstype.float16. Default mstype.float32.
softmax_compute_type(dtype.Number): The computation type of the softmax in the attention.
Should be mstype.float32 or mstype.float16. Default mstype.float32.
param_init_type(dtype.Number): The parameter initialization type of the module.
Should be mstype.float32 or mstype.float16. Default mstype.float32.
qkv_has_bias(bool): Whether Q/K/V in attention has bias or not.
use_past(bool): Use the past state to compute, used for incremental prediction. For example, if we have two
words and want to generate the ten more words. We just need to compute the two words' state only once,
and generate the next word one by one. When use_past is True, there are two steps to run the prediction.
In the first step, set the is_first_iteration to be True by
`model.add_flags_recursive(is_first_iteration=True)`, and pass the full inputs. Then, set the
is_first_iteration to be False by `model.add_flags_recursive(is_first_iteration=False)`.
At this moment, pass the single step's input tensor, and loop it. Default False.
parallel_config(OpParallelConfig, MoEParallelConfig): The parallel configure. When MoE is applied,
MoEParallelConfig is effective, otherwise OpParallelConfig is effective. Default `default_dpmp_config`,
an instance of `OpParallelConfig` with default args.
Inputs:
- **x** (Tensor) - Float Tensor, shape should be [batch_size, seq_length, hidden_size] or
[batch_size * seq_length, hidden_size], if the use_past is False or is_first_iteration=True. Otherwise,
should be [batch_size, 1, hidden_size]
- **freqs_cis** (Tuple) - The precompute freqs and mask for rotary position embedding used in attention.
- **input_mask** (Tensor) - Float Tensor, If the use_past is False or is_first_iteration=True,
the attention mask matrix should ba [batch_size, seq_length, seq_length], or None. None means there will
be no mask in softmax computation. Otherwise, should be [batch_size, 1, hidden_size]
- **init_reset** (Tensor) - A bool tensor with shape [1], used to clear the past key parameter and
past value parameter used in the incremental prediction. Only valid when use_past is True. Default True.
- **batch_valid_length** (Tensor) - Int32 tensor with shape [batch_size] the past calculated the index.
Used for incremental prediction when the use_past is True. Default None.
Outputs:
Tuple, a tuple contains(`output`, `layer_present`).
- **output** (Tensor) - The float tensor of the output of the layer with
shape (batch_size, seq_length, hidden_size) or (batch_size * seq_length, hidden_size), if the use_past is
False or is_first_iteration=True. Otherwise, it will be (batch_size, 1, hidden_size)
- **layer_present** (Tuple) - A tuple of the Tensor of the projected key and value vector with
((batch_size, num_heads, head_dim, seq_length),
(batch_size, num_heads, seq_length, head_dim)).
"""
def __init__(self,
seq_length,
layer_id,
dim: int = 512,
n_heads: int = 8,
num_layers: int = 32,
sigma: float = 0.0048,
mean: float = 0.0,
hidden_dropout_prob: float = 1.0,
attention_dropout_prob: float = 1.0,
n_kv_heads: Optional[int] = None,
intermediate_size: Optional[int] = None,
ffn_dim_multiplier: Optional[int] = None,
norm_eps: float = 1e-5,
compute_dtype=mstype.float16,
layernorm_compute_dtype=mstype.float32,
softmax_compute_dtype=mstype.float32,
rotary_dtype=mstype.float32,
param_init_type=mstype.float32,
res_dtype=mstype.float32,
qkv_has_bias=False,
out_proj_has_bias=True,
use_rope_slice=False,
use_flash_attention=False,
fine_grain_interleave=2,
parallel_config=TransformerOpParallelConfig()):
super().__init__()
self.seq_length = seq_length
self.layer_id = layer_id
self.hidden_size = dim
self.n_head = n_heads
self.num_layers = num_layers
self.head_dim = self.hidden_size // self.n_head
self.n_kv_head = n_heads if n_kv_heads is None else n_kv_heads
self.dtype = compute_dtype
self.res_dtype = res_dtype
self.is_first_iteration = True
self.interleave_num = fine_grain_interleave
self.key_past = None
self.value_past = None
self.reshape = P.Reshape()
self.add = P.Add()
self.cast = P.Cast()
self.attention_norm = LlamaRMSNorm(self.hidden_size, norm_eps, compute_type=layernorm_compute_dtype)
self.ffn_norm = LlamaRMSNorm(self.hidden_size, norm_eps, compute_type=layernorm_compute_dtype)
self.attention = TelechatAttentionInterleave(seq_length=seq_length,
dim=dim,
n_heads=n_heads,
sigma=sigma,
mean=mean,
hidden_dropout_prob=hidden_dropout_prob,
attention_dropout_prob=attention_dropout_prob,
n_kv_heads=n_kv_heads,
compute_dtype=compute_dtype,
softmax_compute_dtype=softmax_compute_dtype,
rotary_dtype=rotary_dtype,
param_init_type=param_init_type,
qkv_has_bias=qkv_has_bias,
out_proj_has_bias=out_proj_has_bias,
use_rope_slice=use_rope_slice,
use_flash_attention=use_flash_attention,
parallel_config=parallel_config)
self.feed_forward = TelechatFeedForward(dim=self.hidden_size,
intermediate_size=intermediate_size,
hidden_dim=4 * self.hidden_size,
sigma=sigma,
mean=mean,
hidden_dropout_prob=hidden_dropout_prob,
ffn_dim_multiplier=ffn_dim_multiplier,
compute_dtype=compute_dtype,
param_init_type=param_init_type)
dp = parallel_config.data_parallel
mp = parallel_config.model_parallel
if not (_get_parallel_mode() in (ParallelMode.AUTO_PARALLEL,) and _is_sharding_propagation()):
self.feed_forward.shard(parallel_config)
self.add.shard(((dp, 1), (dp, 1)))
self.attention_norm.shard((dp, 1))
self.ffn_norm.shard((dp, 1))
if parallel_config.use_seq_parallel and self.is_first_iteration:
self.add.shard(((dp * mp, 1), (dp * mp, 1)))
self.attention_norm.shard((dp * mp, 1))
self.ffn_norm.shard((dp * mp, 1))
self.feed_forward.w2.shard(((dp, mp), (1, mp)), ((dp * mp, 1), (1,)), out_strategy_matmul=((dp * mp, 1),))
concat_stra1 = []
concat_stra2 = []
self.interleave1_inputs = nn.CellList()
self.interleave1_inputs_ = nn.CellList()
self.interleave2_inputs = nn.CellList()
self.interleaved_concat1 = P.Concat(axis=0)
self.interleaved_concat1.add_prim_attr("fine_grained_interleaved_index", self.layer_id)
self.interleaved_concat_1 = P.Concat(axis=0)
self.interleaved_concat2 = P.Concat(axis=0)
if self.layer_id != self.num_layers - 2:
self.interleaved_concat2.add_prim_attr("fine_grained_interleaved_index", 1000)
for _ in range(self.interleave_num):
concat_stra1.append((dp, mp))
interleave_data1 = _MicroBatch(self.interleave_num, 1, [0])
interleave_data1.strided_slice_list[0].add_prim_attr("skip_redistribution", True)
interleave_data1_ = _MicroBatch(self.interleave_num, 1, [0])
interleave_data1_.strided_slice_list[0].add_prim_attr("skip_redistribution", True)
interleave_data2 = _MicroBatch(self.interleave_num, 2, [0, 0])
if parallel_config.use_seq_parallel:
if self.layer_id == self.num_layers - 2:
concat_stra2.append((dp, 1))
else:
concat_stra2.append((dp * mp, 1))
if self.layer_id == self.num_layers - 1:
interleave_data1.strided_slice_list[0].shard(((dp, 1),))
else:
interleave_data1.strided_slice_list[0].shard(((dp * mp, 1),))
interleave_data1_.strided_slice_list[0].shard(((1, 1),))
interleave_data2.strided_slice_list[0].shard(((dp * mp, 1),))
else:
concat_stra2.append((dp, 1))
interleave_data1.strided_slice_list[0].shard(((dp, 1),))
interleave_data1_.strided_slice_list[0].shard(((1, 1),))
interleave_data2.strided_slice_list[0].shard(((dp, 1),))
if self.layer_id == 0 and parallel_config.use_seq_parallel:
interleave_data2.strided_slice_list[0].shard(((dp, 1),))
interleave_data2.strided_slice_list[0].add_prim_attr("skip_redistribution", True)
else:
interleave_data2.strided_slice_list[0].add_prim_attr("skip_redistribution", True)
interleave_data2.strided_slice_list[0].add_prim_attr("fine_grained_interleaved_index", self.layer_id)
interleave_data2.strided_slice_list[1].shard(((dp, mp),))
interleave_data2.strided_slice_list[1].add_prim_attr("fine_grained_interleaved_index", self.layer_id)
interleave_data2.strided_slice_list[1].add_prim_attr("skip_redistribution", True)
self.interleave1_inputs.append(interleave_data1)
self.interleave1_inputs_.append(interleave_data1_)
self.interleave2_inputs.append(interleave_data2)
concat_stra3 = tuple(concat_stra1)
concat_stra4 = tuple(concat_stra2)
self.interleaved_concat1.shard(concat_stra3)
self.interleaved_concat1.add_prim_attr("skip_redistribution", True)
self.interleaved_concat_1.shard(concat_stra3)
self.interleaved_concat_1.add_prim_attr("skip_redistribution", True)
self.interleaved_concat2.shard(concat_stra4)
self.interleaved_concat2.add_prim_attr("skip_redistribution", True)
def linear_layer1(self, x):
"""layer part 1"""
input_x = self.attention_norm(x)
query, key, value = self.attention.compute_qkv(input_x)
return query, key, value
def linear_layer2(self, x, attention):
"""layer part 2"""
attention_output = self.attention.cal_output_proj(attention)
ori_dtype = attention_output.dtype
x = self.add(self.cast(x, self.res_dtype), self.cast(attention_output, self.res_dtype))
output_x = self.ffn_norm(x)
mlp_logit = self.feed_forward(output_x)
output = self.add(self.cast(x, self.res_dtype), self.cast(mlp_logit, self.res_dtype))
output = self.cast(output, ori_dtype)
return output
def construct(self, x, freqs_cis, mask=None, batch_valid_length=None, block_tables=None,
slot_mapping=None, prefix_keys_values=None, q_seq_lens=None):
""" Forward of transformer block. """
self._check_input(x, freqs_cis, mask)
x = self.reshape(x, (-1, x.shape[-1]))
if self.layer_id == 0:
query, key, value = self.linear_layer1(x)
else:
query_tuple = ()
key_tuple = ()
value_tuple = ()
for i in range(self.interleave_num):
x_part, = self.interleave1_inputs[i](i, x)
query_part, key_part, value_part = self.linear_layer1(x_part)
query_tuple += (query_part,)
key_tuple += (key_part,)
value_tuple += (value_part,)
query = self.interleaved_concat1(query_tuple)
key = self.interleaved_concat_1(key_tuple)
value = self.interleaved_concat_1(value_tuple)
attention = self.attention.cal_attn(query, key, value, mask, freqs_cis)
if self.layer_id == self.num_layers - 1:
output = self.linear_layer2(x, attention)
else:
output_tuple = ()
for i in range(self.interleave_num):
x_part, attention_part = self.interleave2_inputs[i](i, x, attention)
output_part = self.linear_layer2(x_part, attention_part)
output_tuple += (output_part,)
output = self.interleaved_concat2(output_tuple)
return output
def _check_input(self, x, freqs_cis, mask):
r"""Check inputs"""
_check_input_dtype(
x.dtype, "x", [mstype.float32, mstype.float16, mstype.bfloat16], self.cls_name)
freqs_cos, freqs_sin, swap_mask = freqs_cis
_check_input_dtype(freqs_cos.dtype, "freqs_cos",
[mstype.float32, mstype.float16, mstype.bfloat16], self.cls_name)
_check_input_dtype(freqs_sin.dtype, "freqs_sin",
[mstype.float32, mstype.float16, mstype.bfloat16], self.cls_name)
if swap_mask is not None:
_check_input_dtype(swap_mask.dtype, "swap_mask",
[mstype.float32, mstype.float16, mstype.bfloat16], self.cls_name)
if mask is not None:
_check_input_dtype(mask.dtype, "input_mask",
[mstype.float32, mstype.float16, mstype.uint8, mstype.bfloat16], self.cls_name)
return True