From 853ff72963e73456c2a318bde1ebfa292ce935e9 Mon Sep 17 00:00:00 2001 From: Tri Dao Date: Wed, 12 Apr 2023 10:05:01 -0700 Subject: [PATCH] Bump version to v1.0.1, fix Cutlass version --- setup.py | 2 +- training/Dockerfile | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/setup.py b/setup.py index a2d18ba67..bb6d104ba 100644 --- a/setup.py +++ b/setup.py @@ -162,7 +162,7 @@ def append_nvcc_threads(nvcc_extra_args): setup( name="flash_attn", - version="1.0.0", + version="1.0.1", packages=find_packages( exclude=("build", "csrc", "include", "tests", "dist", "docs", "benchmarks", "flash_attn.egg-info",) ), diff --git a/training/Dockerfile b/training/Dockerfile index c5c935f11..4ed06fd42 100644 --- a/training/Dockerfile +++ b/training/Dockerfile @@ -85,11 +85,11 @@ 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==1.0.0 +RUN pip install flash-attn==1.0.1 # Install CUDA extensions for cross-entropy, fused dense, layer norm RUN git clone https://github.com/HazyResearch/flash-attention \ - && cd flash-attention && git checkout v1.0.0 \ + && cd flash-attention && git checkout v1.0.1 \ && cd csrc/fused_softmax && pip install . && cd ../../ \ && cd csrc/rotary && pip install . && cd ../../ \ && cd csrc/xentropy && pip install . && cd ../../ \