Skip to content

Commit df1344f

Browse files
committed
Bump to v1.0.2
1 parent 635f159 commit df1344f

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
@@ -162,7 +162,7 @@ def append_nvcc_threads(nvcc_extra_args):
162162

163163
setup(
164164
name="flash_attn",
165-
version="1.0.1",
165+
version="1.0.2",
166166
packages=find_packages(
167167
exclude=("build", "csrc", "include", "tests", "dist", "docs", "benchmarks", "flash_attn.egg-info",)
168168
),

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==1.0.1
88+
RUN pip install flash-attn==1.0.2
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 v1.0.1 \
92+
&& cd flash-attention && git checkout v1.0.2 \
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)