Hf rotary
apply_rotary_emb(xq, xk, freqs_cis)
Apply rotary embeddings to input tensors using the given frequency tensor.
This function applies rotary embeddings to the given query 'xq' and key 'xk' tensors using the provided frequency tensor 'freqs_cis'. The input tensors are reshaped as complex numbers, and the frequency tensor is reshaped for broadcasting compatibility. The resulting tensors contain rotary embeddings and are returned as real tensors.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
xq
|
Tensor
|
Query tensor to apply rotary embeddings. |
required |
xk
|
Tensor
|
Key tensor to apply rotary embeddings. |
required |
freqs_cis
|
Tensor
|
Precomputed frequency tensor for complex exponentials. |
required |
Returns:
Type | Description |
---|---|
Tuple[Tensor, Tensor]
|
Tuple[torch.Tensor, torch.Tensor]: Tuple of modified query tensor and key tensor with rotary embeddings. |
Source code in bionemo/amplify/hf_rotary.py
70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 |
|
precompute_freqs_cis(dim, end, theta=10000.0)
Precompute the frequency tensor for complex exponentials (cis) with given dimensions.
This function calculates a frequency tensor with complex exponentials using the given dimension 'dim' and the end index 'end'. The 'theta' parameter scales the frequencies. The returned tensor contains complex values in complex64 data type.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
dim
|
int
|
Dimension of the frequency tensor. |
required |
end
|
int
|
End index for precomputing frequencies. |
required |
theta
|
float
|
Scaling factor for frequency computation. Defaults to 10000.0. |
10000.0
|
Returns:
Type | Description |
---|---|
torch.Tensor: Precomputed frequency tensor with complex exponentials. |
Source code in bionemo/amplify/hf_rotary.py
25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 |
|
reshape_for_broadcast(freqs_cis, x)
Reshape frequency tensor for broadcasting it with another tensor.
This function reshapes the frequency tensor to have the same shape as the target tensor 'x' for the purpose of broadcasting the frequency tensor during element-wise operations.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
freqs_cis
|
Tensor
|
Frequency tensor to be reshaped. |
required |
x
|
Tensor
|
Target tensor for broadcasting compatibility. |
required |
Returns:
Type | Description |
---|---|
torch.Tensor: Reshaped frequency tensor. |
Raises:
Type | Description |
---|---|
AssertionError
|
If the frequency tensor doesn't match the expected shape. |
AssertionError
|
If the target tensor 'x' doesn't have the expected number of dimensions. |
Source code in bionemo/amplify/hf_rotary.py
46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 |
|