Update README.md
Browse files
README.md
CHANGED
|
@@ -55,7 +55,7 @@ Therefore, we also provide the FP32 version of the RoPE constants for reference.
|
|
| 55 |
|
| 56 |
## Softmax
|
| 57 |
|
| 58 |
-
`softmax_v` is a function that computes the `matmul(softmax(qk_T), v)` operation in the attention layer. To match the HW behaviour,
|
| 59 |
|
| 60 |
```python
|
| 61 |
def softmaxed_v(qk_T, v):
|
|
|
|
| 55 |
|
| 56 |
## Softmax
|
| 57 |
|
| 58 |
+
`softmax_v` is a function that computes the `matmul(softmax(qk_T), v)` operation in the attention layer. To match the HW behaviour, `softmax_v` is broken down into the following steps:
|
| 59 |
|
| 60 |
```python
|
| 61 |
def softmaxed_v(qk_T, v):
|