Skip to content

Commit 33e0860

Browse files
committed
Bump to v0.2.8
1 parent eb33e58 commit 33e0860

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -158,7 +158,7 @@ def append_nvcc_threads(nvcc_extra_args):
158158

159159
setup(
160160
name="flash_attn",
161-
version="0.2.7",
161+
version="0.2.8",
162162
packages=find_packages(
163163
exclude=("build", "csrc", "include", "tests", "dist", "docs", "benchmarks", "flash_attn.egg-info",)
164164
),

training/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -85,11 +85,11 @@ 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==0.2.7
88+
RUN pip install flash-attn==0.2.8
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 v0.2.7 \
92+
&& cd flash-attention && git checkout v0.2.8 \
9393
&& cd csrc/fused_softmax && pip install . && cd ../../ \
9494
&& cd csrc/rotary && pip install . && cd ../../ \
9595
&& cd csrc/xentropy && pip install . && cd ../../ \

0 commit comments

Comments
 (0)