From ce26d3d73d07e9779c5ba6fb2ca3bc187a34c6cc Mon Sep 17 00:00:00 2001 From: Tri Dao Date: Fri, 6 Jan 2023 17:37:30 -0800 Subject: [PATCH] Bump to v0.2.7 --- setup.py | 2 +- training/Dockerfile | 8 ++++---- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/setup.py b/setup.py index ee5ded385..89b5d2762 100644 --- a/setup.py +++ b/setup.py @@ -156,7 +156,7 @@ def append_nvcc_threads(nvcc_extra_args): setup( name="flash_attn", - version="0.2.6-1", + version="0.2.7", packages=find_packages( exclude=("build", "csrc", "include", "tests", "dist", "docs", "benchmarks", "flash_attn.egg-info",) ), diff --git a/training/Dockerfile b/training/Dockerfile index 5db9f668f..8ad2d134e 100644 --- a/training/Dockerfile +++ b/training/Dockerfile @@ -85,15 +85,15 @@ RUN pip install transformers==4.25.1 datasets==2.8.0 pytorch-lightning==1.8.6 tr RUN pip install git+https://github.com/mlcommons/logging.git@2.1.0 # Install FlashAttention -RUN pip install flash-attn==0.2.6.post +RUN pip install flash-attn==0.2.7 # Install CUDA extensions for cross-entropy, fused dense, layer norm -# Install CUDA extensions for cross-entropy, fused dense, layer norm - RUN git clone https://github.com/HazyResearch/flash-attention \ - && cd flash-attention && git checkout v0.2.6 \ +RUN git clone https://github.com/HazyResearch/flash-attention \ + && cd flash-attention && git checkout v0.2.7 \ && cd csrc/fused_softmax && pip install . && cd ../../ \ && cd csrc/rotary && pip install . && cd ../../ \ && cd csrc/xentropy && pip install . && cd ../../ \ && cd csrc/layer_norm && pip install . && cd ../../ \ && cd csrc/fused_dense_lib && pip install . && cd ../../ \ + && cd csrc/ft_attention && pip install . && cd ../../ \ && cd .. && rm -rf flash-attention