Skip to content

Commit 8c8b4d3

Browse files
committed
Bump to v2.2.3
1 parent ccbb14f commit 8c8b4d3

2 files changed

Lines changed: 3 additions & 4 deletions

File tree

flash_attn/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
__version__ = "2.2.2"
1+
__version__ = "2.2.3"
22

33
from flash_attn.flash_attn_interface import (
44
flash_attn_func,

training/Dockerfile

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -85,14 +85,13 @@ RUN pip install transformers==4.25.1 datasets==2.8.0 pytorch-lightning==1.8.6 tr
8585
RUN pip install git+https://github.com/mlcommons/logging.git@2.1.0
8686

8787
# Install FlashAttention
88-
RUN pip install flash-attn==2.2.2
88+
RUN pip install flash-attn==2.2.3
8989

9090
# Install CUDA extensions for cross-entropy, fused dense, layer norm
9191
RUN git clone https://github.com/HazyResearch/flash-attention \
92-
&& cd flash-attention && git checkout v2.2.2 \
92+
&& cd flash-attention && git checkout v2.2.3 \
9393
&& cd csrc/fused_softmax && pip install . && cd ../../ \
9494
&& cd csrc/rotary && pip install . && cd ../../ \
95-
&& cd csrc/xentropy && pip install . && cd ../../ \
9695
&& cd csrc/layer_norm && pip install . && cd ../../ \
9796
&& cd csrc/fused_dense_lib && pip install . && cd ../../ \
9897
&& cd csrc/ft_attention && pip install . && cd ../../ \

0 commit comments

Comments
 (0)